summaryrefslogtreecommitdiff
path: root/main/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/utils.c')
-rw-r--r--main/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/utils.c b/main/utils.c
index a91e1062b..65b0494eb 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -441,7 +441,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;