Author: pjd
Date: Mon Feb 18 00:38:40 2013
New Revision: 246925
URL: http://svnweb.freebsd.org/changeset/base/246925
Log:
Allow [] in remote address, which fixes IPv6 support.
Reported by: simon
Modified:
head/contrib/openbsm/bin/auditdistd/token.l
Modified: head/contrib/openbsm/bin/auditdistd/token.l
==============================================================================
--- head/contrib/openbsm/bin/auditdistd/token.l Sun Feb 17 23:46:17 2013
(r246924)
+++ head/contrib/openbsm/bin/auditdistd/token.l Mon Feb 18 00:38:40 2013
(r246925)
@@ -74,7 +74,7 @@ sender { DP; return SENDER; }
source { DP; return SOURCE; }
timeout { DP; return TIMEOUT; }
[0-9]+ { DP; yylval.num = atoi(yytext); return NUM; }
-\"[a-zA-Z0-9_/ !@#\$%\^\&\*\(\)\+\=\|\;\?\,\.\-\:]*\" { DP; yylval.str =
strndup(yytext + 1, strlen(yytext) - 2); return STR; }
+\"[a-zA-Z0-9_/ !@#\$%\^\&\*\(\)\+\=\|\;\?\,\.\[\]\-\:]*\" { DP; yylval.str =
strndup(yytext + 1, strlen(yytext) - 2); return STR; }
\{ { DP; depth++; return OB; }
\} { DP; depth--; return CB; }
#.*$ /* ignore comments */;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"