fix port in signidentity dialog

This commit is contained in:
Pavol Rusnak 2015-03-03 17:42:25 +01:00
parent 65d734df58
commit 24660f3e2c
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ void layoutSignIdentity(const IdentityType *identity, const char *challenge)
strlcpy(row_hostport, identity->host, sizeof(row_hostport));
if (identity->has_port && identity->port[0]) {
strlcat(row_hostport, ":", sizeof(row_hostport));
strlcat(row_hostport, identity->user, sizeof(row_hostport));
strlcat(row_hostport, identity->port, sizeof(row_hostport));
}
} else {
row_hostport[0] = 0;