1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-05 02:48:04 -05:00

fixed brace error.

This commit is contained in:
Gunter Knauf 2009-07-23 03:54:01 +00:00
parent 59934c1176
commit 21dd9a8021

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;
}