fixed brace error.

This commit is contained in:
Gunter Knauf 2009-07-23 03:54:01 +00:00
parent 59934c1176
commit 21dd9a8021
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ static CURLcode tftp_rx(tftp_state_data_t *state, tftp_event_t event)
if(sendto(state->sockfd, (void *)state->spacket.data,
4, SEND_4TH_ARG,
(struct sockaddr *)&state->remote_addr,
state->remote_addrlen)) < 0) {
state->remote_addrlen) < 0) {
failf(data, "%s", Curl_strerror(state->conn, SOCKERRNO));
return CURLE_SEND_ERROR;
}