mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-01 19:39:29 -05:00
fix format specifier (ITS#6644)
This commit is contained in:
parent
afe2764a03
commit
4601107e4e
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ int ldap_domain2hostlist(
|
|||
/* not first time around */
|
||||
hostlist[cur++] = ' ';
|
||||
}
|
||||
cur += sprintf(&hostlist[cur], "%s:%hd", host, port);
|
||||
cur += sprintf(&hostlist[cur], "%s:%hu", host, port);
|
||||
}
|
||||
add_size:;
|
||||
p += size;
|
||||
|
|
|
|||
Loading…
Reference in a new issue