Make it possible to quote names in autofs maps using double quotes.

Note that this is a workaround, not a proper solution.  If you know
lex well, and want to help - please let me know, I'll explain how it
should work.

PR:		192968
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2014-09-05 14:32:09 +00:00
parent c6efb4c41d
commit a5e9e2bee7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271167

View File

@ -48,6 +48,7 @@ extern int yylex(void);
%option noyywrap
%%
\"[^"]+\" { yytext++; yytext[strlen(yytext) - 1] = '\0'; return STR; };
[a-zA-Z0-9\.\+-_/\:\[\]$&{}]+ { return STR; }
#.*\n { lineno++; return NEWLINE; };
\\\n { lineno++; };