From: Daniel Stenberg Date: Wed, 20 Jul 2022 11:57:34 +0000 (+0200) Subject: urldata: make state.httpreq an unsigned char X-Git-Tag: curl-7_85_0~136 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcbc9226bc5f0910bb33f24b0609a972073c8f21;p=thirdparty%2Fcurl.git urldata: make state.httpreq an unsigned char To match set.method used for the same purpose. Closes #9179 --- diff --git a/lib/urldata.h b/lib/urldata.h index 382da3fe29..04edfd1a4e 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1413,7 +1413,8 @@ struct UrlState { #endif CURLU *uh; /* URL handle for the current parsed URL */ struct urlpieces up; - Curl_HttpReq httpreq; /* what kind of HTTP request (if any) is this */ + unsigned char httpreq; /* Curl_HttpReq; what kind of HTTP request (if any) + is this */ char *url; /* work URL, copied from UserDefined */ char *referer; /* referer string */ #ifndef CURL_DISABLE_COOKIES