summaryrefslogtreecommitdiffstats
path: root/usr.bin/netstat/unix.c
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>2004-07-26 20:18:11 +0000
committercharnier <charnier@FreeBSD.org>2004-07-26 20:18:11 +0000
commitcd48a1d32b7e37d716e9ca0da9ba773994c976b3 (patch)
tree4c45a009fc2c7e4c27551e4a0c106d7a27aef7f7 /usr.bin/netstat/unix.c
parent0a8bce8ca9483bbe6dfb9ac58016a4397d080ee3 (diff)
downloadFreeBSD-src-cd48a1d32b7e37d716e9ca0da9ba773994c976b3.zip
FreeBSD-src-cd48a1d32b7e37d716e9ca0da9ba773994c976b3.tar.gz
Add __FBSDID. Replace local variable sin by sockin to not conflict with sin(3).
Use warnx() instead of warn() when error message is not of any interest. Add prototypes.
Diffstat (limited to 'usr.bin/netstat/unix.c')
-rw-r--r--usr.bin/netstat/unix.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c
index 5698ede..d925611 100644
--- a/usr.bin/netstat/unix.c
+++ b/usr.bin/netstat/unix.c
@@ -31,13 +31,14 @@
* SUCH DAMAGE.
*/
-#ifndef lint
#if 0
+#ifndef lint
static char sccsid[] = "@(#)unix.c 8.1 (Berkeley) 6/6/93";
-#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint */
+#endif
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
/*
* Display protocol blocks in the unix domain.
@@ -88,7 +89,7 @@ unixpr(void)
continue;
}
if ((buf = malloc(len)) == 0) {
- warn("malloc %lu bytes", (u_long)len);
+ warnx("malloc %lu bytes", (u_long)len);
return;
}
if (sysctlbyname(mibvar, buf, &len, 0, 0) < 0) {
OpenPOWER on IntegriCloud