Skip to content

Commit 6af12ef

Browse files
bagderptitSeb
authored andcommitted
krb5: fix "implicit conversion loses integer precision" warnings
conversions to/from enum and unsigned chars Closes curl#11814
1 parent bce6c58 commit 6af12ef

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

lib/krb5.c

+5-6
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ static CURLcode ftpsend(struct Curl_easy *data, struct connectdata *conn,
7272
char *sptr = s;
7373
CURLcode result = CURLE_OK;
7474
#ifdef HAVE_GSSAPI
75-
enum protection_level data_sec = conn->data_prot;
75+
unsigned char data_sec = conn->data_prot;
7676
#endif
7777

7878
if(!cmd)
@@ -385,7 +385,7 @@ static const struct Curl_sec_client_mech Curl_krb5_client_mech = {
385385
};
386386

387387
static const struct {
388-
enum protection_level level;
388+
unsigned char level;
389389
const char *name;
390390
} level_names[] = {
391391
{ PROT_CLEAR, "clear" },
@@ -394,8 +394,7 @@ static const struct {
394394
{ PROT_PRIVATE, "private" }
395395
};
396396

397-
static enum protection_level
398-
name_to_level(const char *name)
397+
static unsigned char name_to_level(const char *name)
399398
{
400399
int i;
401400
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)
734733
{
735734
int code;
736735
struct connectdata *conn = data->conn;
737-
enum protection_level level = conn->request_data_prot;
736+
unsigned char level = conn->request_data_prot;
738737

739738
DEBUGASSERT(level > PROT_NONE && level < PROT_LAST);
740739

@@ -793,7 +792,7 @@ static int sec_set_protection_level(struct Curl_easy *data)
793792
int
794793
Curl_sec_request_prot(struct connectdata *conn, const char *level)
795794
{
796-
enum protection_level l = name_to_level(level);
795+
unsigned char l = name_to_level(level);
797796
if(l == PROT_NONE)
798797
return -1;
799798
DEBUGASSERT(l > PROT_NONE && l < PROT_LAST);

0 commit comments

Comments
 (0)