@@ -72,7 +72,7 @@ static CURLcode ftpsend(struct Curl_easy *data, struct connectdata *conn,
72
72
char * sptr = s ;
73
73
CURLcode result = CURLE_OK ;
74
74
#ifdef HAVE_GSSAPI
75
- enum protection_level data_sec = conn -> data_prot ;
75
+ unsigned char data_sec = conn -> data_prot ;
76
76
#endif
77
77
78
78
if (!cmd )
@@ -385,7 +385,7 @@ static const struct Curl_sec_client_mech Curl_krb5_client_mech = {
385
385
};
386
386
387
387
static const struct {
388
- enum protection_level level ;
388
+ unsigned char level ;
389
389
const char * name ;
390
390
} level_names [] = {
391
391
{ PROT_CLEAR , "clear" },
@@ -394,8 +394,7 @@ static const struct {
394
394
{ PROT_PRIVATE , "private" }
395
395
};
396
396
397
- static enum protection_level
398
- name_to_level (const char * name )
397
+ static unsigned char name_to_level (const char * name )
399
398
{
400
399
int i ;
401
400
for (i = 0 ; i < (int )sizeof (level_names )/(int )sizeof (level_names [0 ]); i ++ )
@@ -734,7 +733,7 @@ static int sec_set_protection_level(struct Curl_easy *data)
734
733
{
735
734
int code ;
736
735
struct connectdata * conn = data -> conn ;
737
- enum protection_level level = conn -> request_data_prot ;
736
+ unsigned char level = conn -> request_data_prot ;
738
737
739
738
DEBUGASSERT (level > PROT_NONE && level < PROT_LAST );
740
739
@@ -793,7 +792,7 @@ static int sec_set_protection_level(struct Curl_easy *data)
793
792
int
794
793
Curl_sec_request_prot (struct connectdata * conn , const char * level )
795
794
{
796
- enum protection_level l = name_to_level (level );
795
+ unsigned char l = name_to_level (level );
797
796
if (l == PROT_NONE )
798
797
return -1 ;
799
798
DEBUGASSERT (l > PROT_NONE && l < PROT_LAST );
0 commit comments