]> granicus.if.org Git - apache/commitdiff
Must return something in the 2^32 domain (preferably one, as shown here),
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 7 Aug 2001 18:37:04 +0000 (18:37 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 7 Aug 2001 18:37:04 +0000 (18:37 +0000)
  not in the 2^64 domain.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89998 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index a2e0fa370b25766c3a674e11d3ae2504c891b642..d7897a31fd041683d67c37466678a780cfbb5462 100644 (file)
@@ -2053,7 +2053,7 @@ AP_DECLARE(int) ap_method_in_list(ap_method_list_t *l, const char *method)
      */
     methnum = ap_method_number_of(method);
     if (methnum != M_INVALID) {
-        return (l->method_mask & (1 << methnum));
+        return !!(l->method_mask & (1 << methnum));
     }
     /*
      * Otherwise, see if the method name is in the array or string names