1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-04 18:38:03 -05:00

fix compiler warning: enumerated type mixed with another type

This commit is contained in:
Yang Tse 2009-01-28 17:26:26 +00:00
parent 0516ce7786
commit 34b09398d5

View File

@ -408,28 +408,28 @@ static size_t tftp_option_add(tftp_state_data_t *state, size_t csize,
return( strlen(option) + 1 ); return( strlen(option) + 1 );
} }
static int tftp_connect_for_tx(tftp_state_data_t *state, tftp_event_t event) static CURLcode tftp_connect_for_tx(tftp_state_data_t *state, tftp_event_t event)
{ {
int res = 0; CURLcode res;
struct SessionHandle *data = state->conn->data; struct SessionHandle *data = state->conn->data;
infof(data, "%s\n", "Connected for transmit"); infof(data, "%s\n", "Connected for transmit");
state->state = TFTP_STATE_TX; state->state = TFTP_STATE_TX;
res = tftp_set_timeouts(state); res = tftp_set_timeouts(state);
if(res) if(res != CURLE_OK)
return(res); return(res);
return tftp_tx(state, event); return tftp_tx(state, event);
} }
static int tftp_connect_for_rx(tftp_state_data_t *state, tftp_event_t event) static CURLcode tftp_connect_for_rx(tftp_state_data_t *state, tftp_event_t event)
{ {
int res = 0; CURLcode res;
struct SessionHandle *data = state->conn->data; struct SessionHandle *data = state->conn->data;
infof(data, "%s\n", "Connected for receive"); infof(data, "%s\n", "Connected for receive");
state->state = TFTP_STATE_RX; state->state = TFTP_STATE_RX;
res = tftp_set_timeouts(state); res = tftp_set_timeouts(state);
if(res) if(res != CURLE_OK)
return(res); return(res);
return tftp_rx(state, event); return tftp_rx(state, event);
} }