diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-28 18:15:18 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-28 18:15:18 +0000 |
commit | f338314e2ee4b4202ed368c9448732f5061978ef (patch) | |
tree | 0ff622e77d3e2c75af2b265aa4fd82f9a5b88a03 /net-mgmt/irrtoolset/files/patch-ah | |
parent | Update to Tcl/Tk version 8.2. (diff) |
Cope with ANSI C++'isms when gcc 2.95 is the system compiler.
Diffstat (limited to 'net-mgmt/irrtoolset/files/patch-ah')
-rw-r--r-- | net-mgmt/irrtoolset/files/patch-ah | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-mgmt/irrtoolset/files/patch-ah b/net-mgmt/irrtoolset/files/patch-ah new file mode 100644 index 000000000000..4278782c08ab --- /dev/null +++ b/net-mgmt/irrtoolset/files/patch-ah @@ -0,0 +1,20 @@ +--- src/dbase/irr_parser.y.orig Sat Nov 27 18:23:53 1999 ++++ src/dbase/irr_parser.y Sat Nov 27 18:25:00 1999 +@@ -90,7 +90,7 @@ + char *error_while_expecting = NULL; + + static regexp_symbol *re_symbol; +-static insert_or_update_filter_action(ListHead<Filter_Action> &l, ++static void insert_or_update_filter_action(ListHead<Filter_Action> &l, + ActionNode *action, FilterNode *filter); + static ASPolicy *find_or_insert_peer_as(Pix peer); + static InterASPolicy *find_or_insert_peering(ASPolicy *p, Pix laddr, Pix raddr); +@@ -635,7 +635,7 @@ + return(0); + } + +-static insert_or_update_filter_action(ListHead<Filter_Action> &l, ++static void insert_or_update_filter_action(ListHead<Filter_Action> &l, + ActionNode *action, FilterNode *filter) { + Filter_Action *fap, *fap2; + |