urldata: change second proxytype field to unsigned char to match

To avoid "enumerated type mixed with another type"

Closes #9179
This commit is contained in:
Daniel Stenberg 2022-07-20 23:13:35 +02:00
parent 8d1da2e172
commit 8cd57d6e39
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -839,7 +839,8 @@ struct postponed_data {
struct proxy_info {
struct hostname host;
long port;
curl_proxytype proxytype; /* what kind of proxy that is in use */
unsigned char proxytype; /* curl_proxytype: what kind of proxy that is in
use */
char *user; /* proxy user name string, allocated */
char *passwd; /* proxy password string, allocated */
};