diff --git a/lib/urldata.h b/lib/urldata.h index d8c3f6f593..4f648778b0 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1018,9 +1018,9 @@ struct connectdata { #ifdef HAVE_GSSAPI BIT(sec_complete); /* if Kerberos is enabled for this connection */ - enum protection_level command_prot; - enum protection_level data_prot; - enum protection_level request_data_prot; + unsigned char command_prot; /* enum protection_level */ + unsigned char data_prot; /* enum protection_level */ + unsigned char request_data_prot; /* enum protection_level */ size_t buffer_size; struct krb5buffer in_buffer; void *app_data;