Introduction
Introduction Statistics Contact Development Disclaimer Help
for displayuri for 'h' types show only the url and not the username field - sac…
git clone git://git.codemadness.org/sacc
Log
Files
Refs
LICENSE
---
commit 49292644fd4a8c983928738fe36ac9daaebc755d
parent 7f2e86d875364e7828b2af55721e784ca0de5298
Author: Hiltjo Posthuma <[email protected]>
Date: Wed, 1 Jan 2020 18:01:17 +0100
for displayuri for 'h' types show only the url and not the username field
the username is already visible.
Diffstat:
M ui_ti.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/ui_ti.c b/ui_ti.c
@@ -211,8 +211,8 @@ displayuri(Item *item)
item->selector, item->host, item->port);
break;
case 'h':
- n = snprintf(bufout, sizeof(bufout), "%s: %s",
- item->username, item->selector);
+ n = snprintf(bufout, sizeof(bufout), "%s",
+ item->selector);
break;
case 'T':
n = snprintf(bufout, sizeof(bufout), "tn3270://%s@%s:%s",
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.