From: Mark Wooding Date: Fri, 13 May 2011 19:28:12 +0000 (+0100) Subject: conf.c (conf_fname): Don't make `,' a filename character. X-Git-Tag: 1.3.6~4 X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/commitdiff_plain/52aea6fe1b11816503cbe856d7404d50f503340a conf.c (conf_fname): Don't make `,' a filename character. This wasn't documented anyway, and it conflicts with the use of `,' as a filename separator in the file endpoint definition syntax. --- diff --git a/conf.c b/conf.c index 73cb20e..70b6506 100644 --- a/conf.c +++ b/conf.c @@ -381,7 +381,7 @@ void conf_name(scanner *sc, char delim, dstr *d) void conf_fname(scanner *sc, dstr *d) { - const char fnchars[] = ".-+,"; + const char fnchars[] = ".-+"; conf_undelim(sc, fnchars, fnchars); conf_name(sc, '/', d); conf_undelim(sc, 0, 0);