Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2-0]: src/dist/ipf/tools Pullup rev 1.3 (requested by jwise in ti...



details:   https://anonhg.NetBSD.org/src/rev/bb6be58e7a09
branches:  netbsd-2-0
changeset: 560356:bb6be58e7a09
user:      jmc <jmc%NetBSD.org@localhost>
date:      Fri Apr 09 21:16:04 2004 +0000

description:
Pullup rev 1.3 (requested by jwise in ticket #110)

Commit fix, for a functional regression  in the new ipf
return_icmp_as_dest with an argument was no longer accepted by the parser

diffstat:

 dist/ipf/tools/ipf_y.y |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 1d72e5b45583 -r bb6be58e7a09 dist/ipf/tools/ipf_y.y
--- a/dist/ipf/tools/ipf_y.y    Fri Apr 09 20:14:56 2004 +0000
+++ b/dist/ipf/tools/ipf_y.y    Fri Apr 09 21:16:04 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ipf_y.y,v 1.1.1.1.2.1 2004/04/01 11:55:48 tron Exp $   */
+/*     $NetBSD: ipf_y.y,v 1.1.1.1.2.2 2004/04/09 21:16:04 jmc Exp $    */
 
 %{
 #include "ipf.h"
@@ -261,6 +261,7 @@
        IPFY_RETICMP                    { fr->fr_flags |= FR_RETICMP; }
        | IPFY_RETICMP returncode       { fr->fr_flags |= FR_RETICMP; }
        | IPFY_RETICMPASDST             { fr->fr_flags |= FR_FAKEICMP; }
+       | IPFY_RETICMPASDST returncode  { fr->fr_flags |= FR_FAKEICMP; }
        | IPFY_RETRST                   { fr->fr_flags |= FR_RETRST; }
        ;
 



Home | Main Index | Thread Index | Old Index