From: Daniel Stenberg Date: Thu, 24 May 2007 21:11:18 +0000 (+0000) Subject: Song Ma filed bug report #1724016 X-Git-Tag: curl-7_16_3~93 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c25da519138797ff25a8e85d832665fd2b2ed21f;p=thirdparty%2Fcurl.git Song Ma filed bug report #1724016 (http://curl.haxx.se/bug/view.cgi?id=1724016) noticing that downloading glob-ranges for TFTP was broken in CVS. --- diff --git a/CHANGES b/CHANGES index 60d388942b..a4db52af07 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,10 @@ Changelog Daniel S (24 May 2007) +- Song Ma filed bug report #1724016 + (http://curl.haxx.se/bug/view.cgi?id=1724016) noticing that downloading + glob-ranges for TFTP was broken in CVS. Fixed now. + - 'mytx' in bug report #1723194 (http://curl.haxx.se/bug/view.cgi?id=1723194) pointed out that the warnf() function in the curl tool didn't properly deal with the cases when excessively long words were used in the string to chop diff --git a/lib/tftp.c b/lib/tftp.c index d63ad773b4..0e5b15dabb 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -687,6 +687,10 @@ CURLcode Curl_tftp(struct connectdata *conn, bool *done) state = (tftp_state_data_t *)conn->data->reqdata.proto.tftp; } + code = Curl_readwrite_init(conn); + if(code) + return code; + /* Run the TFTP State Machine */ for(code=tftp_state_machine(state, TFTP_EVENT_INIT); (state->state != TFTP_STATE_FIN) && (code == CURLE_OK);