diff options
author | 2001-08-13 15:04:29 +0000 | |
---|---|---|
committer | 2001-08-13 15:04:29 +0000 | |
commit | f0c54cfe9ae59dcd939af264c7d1ce50531eb597 (patch) | |
tree | f9ea1a6869097129475bf4c4e8bf63464b07cd66 | |
parent | use getifaddrs(3) rather than SIOCGIFCONF. in fact, if_map() does not do (diff) | |
download | wireguard-openbsd-f0c54cfe9ae59dcd939af264c7d1ce50531eb597.tar.xz wireguard-openbsd-f0c54cfe9ae59dcd939af264c7d1ce50531eb597.zip |
Don't reference seminfo.semmap as it no longer exists.
-rw-r--r-- | usr.bin/ipcs/ipcs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/ipcs/ipcs.c b/usr.bin/ipcs/ipcs.c index 64134e79af6..5dc40f6b4ec 100644 --- a/usr.bin/ipcs/ipcs.c +++ b/usr.bin/ipcs/ipcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipcs.c,v 1.13 2001/07/12 05:17:11 deraadt Exp $ */ +/* $OpenBSD: ipcs.c,v 1.14 2001/08/13 15:04:29 millert Exp $ */ /* $NetBSD: ipcs.c,v 1.10.6.1 1996/06/07 01:53:47 thorpej Exp $ */ /* @@ -421,8 +421,6 @@ main(argc, argv) if (display & SEMTOTAL) { printf("seminfo:\n"); - printf("\tsemmap: %6d\t(# of entries in semaphore map)\n", - seminfo.semmap); printf("\tsemmni: %6d\t(# of semaphore identifiers)\n", seminfo.semmni); printf("\tsemmns: %6d\t(# of semaphores in system)\n", |