summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2011-04-29 17:26:59 +0000
committerespie <espie@openbsd.org>2011-04-29 17:26:59 +0000
commit39dad22b37a8ea1bf0d39ff49d0c9fac2885cef7 (patch)
treeae8449ae6b22fa6a0da500ac3e06212c639621b5
parentslightly better netmask regexp (diff)
downloadwireguard-openbsd-39dad22b37a8ea1bf0d39ff49d0c9fac2885cef7.tar.xz
wireguard-openbsd-39dad22b37a8ea1bf0d39ff49d0c9fac2885cef7.zip
sorry, lousy fingers... typoed in the file while checking the diff
-rw-r--r--usr.bin/sudo/toke.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/sudo/toke.l b/usr.bin/sudo/toke.l
index 719b9051463..5429f5a8200 100644
--- a/usr.bin/sudo/toke.l
+++ b/usr.bin/sudo/toke.l
@@ -362,7 +362,7 @@ NOSETENV[[:blank:]]*: {
return(NTWKADDR);
}
-{IPV4ADDR}\/([12]?[0-9]|3[0-2]|) {
+{IPV4ADDR}\/([12]?[0-9]|3[0-2]) {
if (!fill(yytext, yyleng))
yyterminate();
LEXTRACE("NTWKADDR ");