diff options
author | 2014-11-04 15:24:40 +0000 | |
---|---|---|
committer | 2014-11-04 15:24:40 +0000 | |
commit | 32f0aef8a08dda18b24aa72eb3b9056e10c2983d (patch) | |
tree | d4b88c2abcf072dfadaeaa27a4f76d601775a498 /sys/netinet/tcp_input.c | |
parent | Uncomment code that does voltage capabilities initialisation. Without (diff) | |
download | wireguard-openbsd-32f0aef8a08dda18b24aa72eb3b9056e10c2983d.tar.xz wireguard-openbsd-32f0aef8a08dda18b24aa72eb3b9056e10c2983d.zip |
Remove "pl" suffix on pool names.
ok dlg@, uebayasi@, mikeb@
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 09c7b728717..9b1b458c243 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.281 2014/10/24 17:58:47 bluhm Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.282 2014/11/04 15:24:40 mpi Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -3409,7 +3409,7 @@ syn_cache_init() /* Initialize the syn cache pool. */ pool_init(&syn_cache_pool, sizeof(struct syn_cache), 0, 0, 0, - "synpl", NULL); + "syncache", NULL); } void |