From fd82234ffe1530f61c8a4235772c9021ec2a898c Mon Sep 17 00:00:00 2001 From: trasz Date: Fri, 14 Nov 2014 10:53:55 +0000 Subject: MFC r273107: Make automount(8)/automountd(8) treat percent sign as a valid part of path. It's useful for spaces encoded as %20 as msdosfs labels. Submitted by: glebius@ --- usr.sbin/autofs/token.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/autofs') diff --git a/usr.sbin/autofs/token.l b/usr.sbin/autofs/token.l index 5062a13..6a92b7f 100644 --- a/usr.sbin/autofs/token.l +++ b/usr.sbin/autofs/token.l @@ -49,7 +49,7 @@ extern int yylex(void); %% \"[^"]+\" { yytext++; yytext[strlen(yytext) - 1] = '\0'; return STR; }; -[a-zA-Z0-9\.\+-_/\:\[\]$&{}]+ { return STR; } +[a-zA-Z0-9\.\+-_/\:\[\]$&%{}]+ { return STR; } #.*\n { lineno++; return NEWLINE; }; \\\n { lineno++; }; \n { lineno++; return NEWLINE; } -- cgit v1.1