diff options
author | 2011-07-04 16:02:07 +0000 | |
---|---|---|
committer | 2011-07-04 16:02:07 +0000 | |
commit | 4ba4e58cd388f0a22e0d8330c4cfff060bafaaee (patch) | |
tree | 8e86e0d734651e89cf34434ee3372d3911424e54 | |
parent | declare a return type on a function returning void, matches upstream (diff) | |
download | wireguard-openbsd-4ba4e58cd388f0a22e0d8330c4cfff060bafaaee.tar.xz wireguard-openbsd-4ba4e58cd388f0a22e0d8330c4cfff060bafaaee.zip |
Nuke a dangling bit left over from the now gone PRU_PEEREID
ok deraadt@
-rw-r--r-- | sys/sys/protosw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/protosw.h b/sys/sys/protosw.h index 85ab91369e3..d1bb2327d36 100644 --- a/sys/sys/protosw.h +++ b/sys/sys/protosw.h @@ -1,4 +1,4 @@ -/* $OpenBSD: protosw.h,v 1.16 2011/04/04 12:44:10 deraadt Exp $ */ +/* $OpenBSD: protosw.h,v 1.17 2011/07/04 16:02:07 guenther Exp $ */ /* $NetBSD: protosw.h,v 1.10 1996/04/09 20:55:32 cgd Exp $ */ /*- @@ -153,7 +153,7 @@ char *prurequests[] = { "RCVD", "SEND", "ABORT", "CONTROL", "SENSE", "RCVOOB", "SENDOOB", "SOCKADDR", "PEERADDR", "CONNECT2", "FASTTIMO", "SLOWTIMO", - "PROTORCV", "PROTOSEND", "PEEREID", + "PROTORCV", "PROTOSEND", }; #endif |