diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-07 13:15:26 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-07 13:15:26 +0000 |
commit | 3268e23184a23dee269783cba7d665b8dfcdfab0 (patch) | |
tree | c96c5e948d0d6b870c44f7639108aa5cb8a5f459 /sys/netinet | |
parent | 49b3d82ba491a7a0baed2abd16ea75660d77cc19 (diff) |
remove MAXBUFSIZ define, unused since rev 1.33
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_esp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/ip_esp.c b/sys/netinet/ip_esp.c index ac4d6292bbc..a951063b8e8 100644 --- a/sys/netinet/ip_esp.c +++ b/sys/netinet/ip_esp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_esp.c,v 1.195 2022/05/03 09:18:11 claudio Exp $ */ +/* $OpenBSD: ip_esp.c,v 1.196 2024/06/07 13:15:25 jsg Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -334,8 +334,6 @@ esp_zeroize(struct tdb *tdbp) return error; } -#define MAXBUFSIZ (AH_ALEN_MAX > ESP_MAX_IVS ? AH_ALEN_MAX : ESP_MAX_IVS) - /* * ESP input processing, called (eventually) through the protocol switch. */ |