| Date: Wed, 1 Jan 2020 18:01:17 +0100
for displayuri for 'h' types show only the url and not the username field
tthe username is already visible.
Diffstat:
M ui_ti.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- |
| t@@ -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", |