From: Tilghman Lesher Date: Thu, 1 May 2008 18:59:08 +0000 (+0000) Subject: '#' is another reserved character for URIs that also needs to be escaped. X-Git-Tag: 1.4.20~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dceb0835dadd2d3876ede74b08e7291ea347b58a;p=thirdparty%2Fasterisk.git '#' is another reserved character for URIs that also needs to be escaped. (closes issue #10543) Reported by: blitzrage Patches: 20080418__bug10543.diff.txt uploaded by Corydon76 (license 14) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@115017 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/utils.c b/main/utils.c index 6d20a9d902..2bb4fb2bb4 100644 --- a/main/utils.c +++ b/main/utils.c @@ -446,7 +446,7 @@ static void base64_init(void) */ char *ast_uri_encode(const char *string, char *outbuf, int buflen, int doreserved) { - char *reserved = ";/?:@&=+$, "; /* Reserved chars */ + char *reserved = ";/?:@&=+$,# "; /* Reserved chars */ const char *ptr = string; /* Start with the string */ char *out = NULL;