diff options
-rw-r--r-- | bin/chio/parse.y | 4 | ||||
-rw-r--r-- | sbin/ipsecctl/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/bgpd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/dvmrpd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/hostapd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/hoststated/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/ifstated/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/ntpd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/ospf6d/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/ospfd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/relayd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/ripd/parse.y | 4 |
12 files changed, 24 insertions, 24 deletions
diff --git a/bin/chio/parse.y b/bin/chio/parse.y index b50440aafa6..981962a452b 100644 --- a/bin/chio/parse.y +++ b/bin/chio/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.9 2007/10/16 06:06:47 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.10 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2006 Bob Beck <beck@openbsd.org> @@ -324,7 +324,7 @@ yylex(void) } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y index 895c9d09052..c46d0c8342d 100644 --- a/sbin/ipsecctl/parse.y +++ b/sbin/ipsecctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.129 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.130 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -1093,7 +1093,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index 0c2937196ab..f3915d22091 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.211 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.212 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -2035,7 +2035,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/dvmrpd/parse.y b/usr.sbin/dvmrpd/parse.y index 595dd8f9dda..18e2c838683 100644 --- a/usr.sbin/dvmrpd/parse.y +++ b/usr.sbin/dvmrpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.10 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.11 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2004, 2005, 2006 Esben Norby <norby@openbsd.org> @@ -581,7 +581,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/hostapd/parse.y b/usr.sbin/hostapd/parse.y index e6e3c07b571..9ecb2a35a7b 100644 --- a/usr.sbin/hostapd/parse.y +++ b/usr.sbin/hostapd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.33 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.34 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2004, 2005, 2006 Reyk Floeter <reyk@openbsd.org> @@ -1502,7 +1502,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/hoststated/parse.y b/usr.sbin/hoststated/parse.y index 388583ecadd..7578f91e9bd 100644 --- a/usr.sbin/hoststated/parse.y +++ b/usr.sbin/hoststated/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.64 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.65 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -1437,7 +1437,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/ifstated/parse.y b/usr.sbin/ifstated/parse.y index 7cce4e88cf0..4f9b26bd4e9 100644 --- a/usr.sbin/ifstated/parse.y +++ b/usr.sbin/ifstated/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.21 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.22 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org> @@ -596,7 +596,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/ntpd/parse.y b/usr.sbin/ntpd/parse.y index 79d33b5dc0d..7e69dcf97f5 100644 --- a/usr.sbin/ntpd/parse.y +++ b/usr.sbin/ntpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.38 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.39 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -477,7 +477,7 @@ yylex(void) } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/ospf6d/parse.y b/usr.sbin/ospf6d/parse.y index 3380d097432..867c8087ad6 100644 --- a/usr.sbin/ospf6d/parse.y +++ b/usr.sbin/ospf6d/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.8 2007/10/16 08:41:56 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.9 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -746,7 +746,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y index aa39552955c..0bbf5f5bedd 100644 --- a/usr.sbin/ospfd/parse.y +++ b/usr.sbin/ospfd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.56 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.57 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -867,7 +867,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y index 388583ecadd..7578f91e9bd 100644 --- a/usr.sbin/relayd/parse.y +++ b/usr.sbin/relayd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.64 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.65 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -1437,7 +1437,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { diff --git a/usr.sbin/ripd/parse.y b/usr.sbin/ripd/parse.y index 14164dd322e..ed390909900 100644 --- a/usr.sbin/ripd/parse.y +++ b/usr.sbin/ripd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.11 2007/10/16 06:06:49 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.12 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -590,7 +590,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { |