diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2002-10-25 06:34:19 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2002-10-25 06:34:19 +0000 |
commit | 1889318f9a1163c91ad62da118abd6cea943f91a (patch) | |
tree | 04d7fa58fd769292b72c14ed9d1f72f48a2c0a93 /usr.sbin | |
parent | 96107755006c3b6f05a115236e79fa7a285495fe (diff) |
%ul -> %lu
ok millert@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/named/named/ns_udp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/named/named/ns_udp.c b/usr.sbin/named/named/ns_udp.c index dd3f9df122f..041b94398c1 100644 --- a/usr.sbin/named/named/ns_udp.c +++ b/usr.sbin/named/named/ns_udp.c @@ -1,10 +1,10 @@ -/* $OpenBSD: ns_udp.c,v 1.1 1997/03/12 10:42:36 downsj Exp $ */ +/* $OpenBSD: ns_udp.c,v 1.2 2002/10/25 06:34:18 camield Exp $ */ #if !defined(lint) && !defined(SABER) #if 0 static char rcsid[] = "$From: ns_udp.c,v 8.3 1996/08/27 08:33:23 vixie Exp $"; #else -static char rcsid[] = "$OpenBSD: ns_udp.c,v 1.1 1997/03/12 10:42:36 downsj Exp $"; +static char rcsid[] = "$OpenBSD: ns_udp.c,v 1.2 2002/10/25 06:34:18 camield Exp $"; #endif #endif /* not lint */ @@ -81,7 +81,7 @@ ns_udp() { res = lseek(fd, offset, SEEK_SET); if (res != offset) { - dprintf(1, (ddt, "ns_udp: lseek %ul failed %lu %d\n", + dprintf(1, (ddt, "ns_udp: lseek %lu failed %lu %d\n", offset, res, errno)); goto cleanup; } @@ -97,7 +97,7 @@ ns_udp() { sum = 1; lseek(fd, offset, SEEK_SET); if (res != offset) { - dprintf(1, (ddt, "ns_udp: lseek %ul failed %lu %d\n", + dprintf(1, (ddt, "ns_udp: lseek %lu failed %lu %d\n", offset, res, errno)); goto cleanup; } |