From: kstailey Date: Fri, 7 Feb 1997 19:33:49 +0000 (+0000) Subject: one more tcpudp->tcp/udp X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1a5ce0de211faae02c396b4ce9c9a695820b074b;p=openbsd one more tcpudp->tcp/udp --- diff --git a/sbin/ipnat/ipnat.c b/sbin/ipnat/ipnat.c index 9d000d8abc4..4f9aafb1a55 100644 --- a/sbin/ipnat/ipnat.c +++ b/sbin/ipnat/ipnat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipnat.c,v 1.7 1997/02/07 18:26:47 kstailey Exp $ */ +/* $OpenBSD: ipnat.c,v 1.8 1997/02/07 19:33:49 kstailey Exp $ */ /* * (C)opyright 1993,1994,1995 by Darren Reed. * @@ -540,7 +540,7 @@ char *line; ipn.in_flags = IPN_TCP; else if (!strcasecmp(s, "udp")) ipn.in_flags = IPN_UDP; - else if (!strcasecmp(s, "tcpudp")) + else if (!strcasecmp(s, "tcp/udp")) ipn.in_flags = IPN_TCPUDP; else { fprintf(stderr, "expected protocol name - got \"%s\"\n", s);