From 4c46afe25bef0bc17a3f0a2b235ada04d9cef035 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 12 Jun 2007 15:42:14 +0000 Subject: [PATCH] Added the forward slash to the list of characters escaped by urlesc(). This prevents the slash from being interpreted as a directory separator. --- webcit/webcit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/webcit.c b/webcit/webcit.c index 36e1da392..aef8b0a24 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -262,7 +262,7 @@ void escputs(char *strbuf) void urlesc(char *outbuf, char *strbuf) { int a, b, c; - char *ec = " #&;`'|*?-~<>^()[]{}$\"\\"; + char *ec = " #&;`'|*?-~<>^()[]{}/$\"\\"; strcpy(outbuf, ""); -- 2.39.2