From 52aea6fe1b11816503cbe856d7404d50f503340a Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Fri, 13 May 2011 20:28:12 +0100 Subject: [PATCH] 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. --- conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0