mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 08:07:28 -04: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue