diff options
author | Yang Tse <yangsita@gmail.com> | 2009-03-11 04:45:18 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-03-11 04:45:18 +0000 |
commit | dd53b356ff2e359b73d881f5a065b363e7088fd5 (patch) | |
tree | 580926ea21554e39fb75300d0e360cb875a39a2d /lib/telnet.c | |
parent | f1db505778f2cea0ec7a631d5ce3b99d841f8a2c (diff) | |
download | curl-dd53b356ff2e359b73d881f5a065b363e7088fd5.tar.gz |
fix previous commit misplaced break statement
Diffstat (limited to 'lib/telnet.c')
-rw-r--r-- | lib/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/telnet.c b/lib/telnet.c index 7c0b20283..d0d211a6b 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -1366,8 +1366,8 @@ static CURLcode telnet_do(struct connectdata *conn, bool *done) infof(data,"WSAEnumNetworkEvents failed (%d)", err); keepon = FALSE; code = CURLE_READ_ERROR; - break; } + break; } if(events.lNetworkEvents & FD_READ) { /* This reallu OUGHT to check its return code. */ |