summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkstailey <kstailey@openbsd.org>1997-03-15 17:18:07 +0000
committerkstailey <kstailey@openbsd.org>1997-03-15 17:18:07 +0000
commit12245bcefb552764226fa145de59752c599b95d0 (patch)
tree1a493f74a2107fcce8914ef629119f3390e9dc17
parentAV macs don't have SONIC, they have MACE, and 040 PBs do have SONIC. (diff)
downloadwireguard-openbsd-12245bcefb552764226fa145de59752c599b95d0.tar.xz
wireguard-openbsd-12245bcefb552764226fa145de59752c599b95d0.zip
remove space from tsleep() message
-rw-r--r--sys/netinet/ip_fil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_fil.c b/sys/netinet/ip_fil.c
index f47c090ef8f..f85daffa543 100644
--- a/sys/netinet/ip_fil.c
+++ b/sys/netinet/ip_fil.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_fil.c,v 1.10 1997/02/11 22:23:12 kstailey Exp $ */
+/* $OpenBSD: ip_fil.c,v 1.11 1997/03/15 17:18:07 kstailey Exp $ */
/*
* (C)opyright 1993,1994,1995 by Darren Reed.
*
@@ -565,7 +565,7 @@ iplread(dev, uio)
if (!uio->uio_resid)
return 0;
while (!iplused) {
- error = SLEEP(iplbuf, "ipl sleep");
+ error = SLEEP(iplbuf, "ipl_sleep");
if (error)
return error;
}