diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-01 17:18:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-01 17:18:30 +0000 |
commit | ced04a9a24fbcf588c67c2a81aceb1bf8c5bea12 (patch) | |
tree | 20b94edde5bbdb8e99707f2369d0643b18efbad0 /usr.sbin/ospf6d/interface.c | |
parent | 8fc985443cd2087f0759a657ac855375e528afd4 (diff) |
another annoying %i
Diffstat (limited to 'usr.sbin/ospf6d/interface.c')
-rw-r--r-- | usr.sbin/ospf6d/interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/interface.c b/usr.sbin/ospf6d/interface.c index 3f16a5efc47..7d2158b491e 100644 --- a/usr.sbin/ospf6d/interface.c +++ b/usr.sbin/ospf6d/interface.c @@ -1,4 +1,4 @@ -/* $OpenBSD: interface.c,v 1.20 2012/09/17 13:49:27 bluhm Exp $ */ +/* $OpenBSD: interface.c,v 1.21 2013/11/01 17:18:29 deraadt Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -842,7 +842,7 @@ if_set_ipv6_checksum(int fd) { int offset = offsetof(struct ospf_hdr, chksum); - log_debug("if_set_ipv6_checksum setting cksum offset to %i", offset); + log_debug("if_set_ipv6_checksum setting cksum offset to %d", offset); if (setsockopt(fd, IPPROTO_IPV6, IPV6_CHECKSUM, &offset, sizeof(offset)) < 0) { log_warn("if_set_ipv6_checksum: error setting IPV6_CHECKSUM"); |