diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2013-01-09 08:04:26 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2013-01-09 08:04:26 +0000 |
commit | fcd86be51485ccd1261784fd419ab8b1f89e99ae (patch) | |
tree | 11ed17a4dfe4065d3e029c1ffb5f12d9c09a3281 | |
parent | 347415724e4c053b4c234dea3fdf849ec7fc47a5 (diff) |
Almost exactly 10 years ago, we changed the length of PF table names to
32 chars. Allow bgpd to use these newfangled longer names.
OK sthen@
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index a412a641531..efb0490eb4e 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.274 2012/11/13 09:47:20 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.275 2013/01/09 08:04:25 phessler Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -38,7 +38,7 @@ #define CONFFILE "/etc/bgpd.conf" #define BGPD_USER "_bgpd" #define PEER_DESCR_LEN 32 -#define PFTABLE_LEN 16 +#define PFTABLE_LEN 32 #define TCP_MD5_KEY_LEN 80 #define IPSEC_ENC_KEY_LEN 32 #define IPSEC_AUTH_KEY_LEN 20 |