From: Terry Wilson Date: Wed, 26 Mar 2008 21:23:29 +0000 (+0000) Subject: Stupid strcasecmp function :-) X-Git-Tag: 1.6.0-beta7~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c2531989a73841d37fc353962ab8f4a25e498fd;p=thirdparty%2Fasterisk.git Stupid strcasecmp function :-) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@111213 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index 9e8735b2cf..ca2fe5df98 100644 --- a/main/http.c +++ b/main/http.c @@ -908,7 +908,7 @@ static void *httpd_helper_thread(void *data) out = ast_http_error(501, "Not Implemented", NULL, "Attempt to use unimplemented / unsupported method"); } else { /* try to serve it */ - out = handle_uri(ser, uri, (strcasecmp(buf, "get")) ? AST_HTTP_GET : AST_HTTP_POST, + out = handle_uri(ser, uri, (!strcasecmp(buf, "get")) ? AST_HTTP_GET : AST_HTTP_POST, &status, &title, &contentlength, &vars, &static_content); }