summaryrefslogtreecommitdiff
path: root/main/http.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2008-03-31 20:45:05 +0000
committerTerry Wilson <twilson@digium.com>2008-03-31 20:45:05 +0000
commitaa720d402bf57f2b517e251b0c5b83f3241bf7fa (patch)
tree10897d99f14121383e329cd894e7cf5c60bbc8b0 /main/http.c
parent58f05ac8c22535f930e0c0fd45af8ae01aaf60a3 (diff)
Handle blank prefix= in http.conf
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@112033 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/http.c')
-rw-r--r--main/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/http.c b/main/http.c
index dc8814b55..1723fe4e7 100644
--- a/main/http.c
+++ b/main/http.c
@@ -683,8 +683,8 @@ static struct ast_str *handle_uri(struct ast_tcptls_session_instance *ser, char
goto cleanup;
}
- /* We want requests to start with the prefix and '/' */
- if ((l = strlen(prefix)) && !strncasecmp(uri, prefix, l) && uri[l] == '/') {
+ /* We want requests to start with the (optional) prefix and '/' */
+ if (((l = strlen(prefix)) || !*prefix) && !strncasecmp(uri, prefix, l) && uri[l] == '/') {
uri += l + 1;
/* scan registered uris to see if we match one. */
AST_RWLIST_RDLOCK(&uris);