diff options
author | 2004-09-15 19:01:28 +0000 | |
---|---|---|
committer | 2004-09-15 19:01:28 +0000 | |
commit | 3b868acb34342571210e49835fb3d384fb19df14 (patch) | |
tree | b7f79ec654839523a2c4bfe26a7c5c644a25abdb /lib/libc/net/inet_net_ntop.c | |
parent | pretty (diff) | |
download | wireguard-openbsd-3b868acb34342571210e49835fb3d384fb19df14.tar.xz wireguard-openbsd-3b868acb34342571210e49835fb3d384fb19df14.zip |
unused variables
Diffstat (limited to 'lib/libc/net/inet_net_ntop.c')
-rw-r--r-- | lib/libc/net/inet_net_ntop.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/net/inet_net_ntop.c b/lib/libc/net/inet_net_ntop.c index 18eea6bb6d2..2b7de0cec35 100644 --- a/lib/libc/net/inet_net_ntop.c +++ b/lib/libc/net/inet_net_ntop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inet_net_ntop.c,v 1.3 2002/08/19 03:01:54 itojun Exp $ */ +/* $OpenBSD: inet_net_ntop.c,v 1.4 2004/09/15 19:01:28 deraadt Exp $ */ /* * Copyright (c) 1996 by Internet Software Consortium. @@ -21,7 +21,7 @@ #if 0 static const char rcsid[] = "$From: inet_net_ntop.c,v 8.2 1996/08/08 06:54:44 vixie Exp $"; #else -static const char rcsid[] = "$OpenBSD: inet_net_ntop.c,v 1.3 2002/08/19 03:01:54 itojun Exp $"; +static const char rcsid[] = "$OpenBSD: inet_net_ntop.c,v 1.4 2004/09/15 19:01:28 deraadt Exp $"; #endif #endif @@ -85,7 +85,6 @@ inet_net_ntop_ipv4(src, bits, dst, size) size_t size; { char *odst = dst; - char *t; u_int m; int b; char *ep; |