]> granicus.if.org Git - curl/commitdiff
http: fix warning on conversion from int to bit
authorDaniel Stenberg <daniel@haxx.se>
Sat, 21 Sep 2019 21:09:59 +0000 (23:09 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 21 Sep 2019 21:09:59 +0000 (23:09 +0200)
Follow-up from 03ebe66d70

lib/http.c

index de16f6e6b4ab507ed58810f65bdc5e1a0d89dc39..9719b28ef586d1347892527b739a81e824da2cac 100644 (file)
@@ -4054,7 +4054,7 @@ CURLcode Curl_http_readwrite_headers(struct Curl_easy *data,
       if(result)
         return result;
     }
-  #ifdef USE_SPNEGO
+#ifdef USE_SPNEGO
     else if(checkprefix("Persistent-Auth", k->p)) {
       struct negotiatedata *negdata = &conn->negotiate;
       struct auth *authp = &data->state.authhost;
@@ -4062,14 +4062,15 @@ CURLcode Curl_http_readwrite_headers(struct Curl_easy *data,
         char *persistentauth = Curl_copy_header_value(k->p);
         if(!persistentauth)
           return CURLE_OUT_OF_MEMORY;
-        negdata->noauthpersist = checkprefix("false", persistentauth);
+        negdata->noauthpersist = checkprefix("false", persistentauth)?
+          TRUE:FALSE;
         negdata->havenoauthpersist = TRUE;
         infof(data, "Negotiate: noauthpersist -> %d, header part: %s",
           negdata->noauthpersist, persistentauth);
         free(persistentauth);
       }
     }
-  #endif
+#endif
     else if((k->httpcode >= 300 && k->httpcode < 400) &&
             checkprefix("Location:", k->p) &&
             !data->req.location) {