diff options
Diffstat (limited to 'usr.sbin/dhcpd/parse.c')
| -rw-r--r-- | usr.sbin/dhcpd/parse.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/dhcpd/parse.c b/usr.sbin/dhcpd/parse.c index 13398243f10..9e0dc4e2f7e 100644 --- a/usr.sbin/dhcpd/parse.c +++ b/usr.sbin/dhcpd/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.11 2007/02/26 00:49:53 stevesk Exp $ */ +/* $OpenBSD: parse.c,v 1.12 2009/09/01 08:42:31 reyk Exp $ */ /* Common parser code for dhcpd and dhclient. */ @@ -212,6 +212,9 @@ parse_hardware_param(FILE *cfile, struct hardware *hardware) case TOK_FDDI: hardware->htype = HTYPE_FDDI; break; + case TOK_IPSEC_TUNNEL: + hardware->htype = HTYPE_IPSEC_TUNNEL; + break; default: parse_warn("expecting a network hardware type"); skip_to_semi(cfile); |
