mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Add a missing % in a format string.
Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease)
This commit is contained in:
parent
856cf6873b
commit
5cbe92e7e8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81923
@ -551,7 +551,7 @@ ipv6cp_DecodeConfig(struct fsm *fp, u_char *cp, int plen, int mode_type,
|
||||
fsm_Close(&ipv6cp->fsm);
|
||||
} else if (token == ipv6cp->peer_token)
|
||||
log_Printf(log_IsKept(LogIPV6CP) ? LogIPV6CP : LogPHASE,
|
||||
"0x08lx: Unacceptable token!\n", (unsigned long)token);
|
||||
"0x%08lx: Unacceptable token!\n", (unsigned long)token);
|
||||
else if (token != ipv6cp->my_token) {
|
||||
n = 100;
|
||||
while (n && !ipcp_SetIPv6address(ipv6cp, token, ipv6cp->peer_token)) {
|
||||
|
Loading…
Reference in New Issue
Block a user