summaryrefslogtreecommitdiff
path: root/sys/netinet/udp_usrreq.c
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1996-06-05 17:20:35 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1996-06-05 17:20:35 +0000
commitc611d82e64cc4a1054144ee3ca51b749875f10bc (patch)
tree2254675cbda3dbf7613056886301773655d45500 /sys/netinet/udp_usrreq.c
parent58639ed39ab1f708f74f0efd57879b026990c661 (diff)
Notes
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r--sys/netinet/udp_usrreq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index e51b320de033..e285b04af9f9 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
- * $Id: udp_usrreq.c,v 1.25 1996/05/02 05:54:14 fenner Exp $
+ * $Id: udp_usrreq.c,v 1.26 1996/05/09 20:15:26 wollman Exp $
*/
#include <sys/param.h>
@@ -276,6 +276,7 @@ udp_input(m, iphlen)
* ...and if that fails, do a wildcard search.
*/
if (inp == NULL) {
+ udpstat.udpps_pcbhashmiss++;
inp = in_pcblookup(&udb, ip->ip_src, uh->uh_sport, ip->ip_dst,
uh->uh_dport, INPLOOKUP_WILDCARD);
}