2 Mar 2003 18:21
cvs: curl/lib telnet.c,1.35,1.36
Daniel Stenberg <bagder <at> users.sourceforge.net>
2003-03-02 17:21:03 GMT
2003-03-02 17:21:03 GMT
Update of /cvsroot/curl/curl/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv4389
Modified Files:
telnet.c
Log Message:
moved a variable declaration to remove a compiler warnings with the MSVC
compiler, mentioned by Andi Jahja
Index: telnet.c
===================================================================
RCS file: /cvsroot/curl/curl/lib/telnet.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- telnet.c 28 Feb 2003 12:20:30 -0000 1.35
+++ telnet.c 2 Mar 2003 17:20:59 -0000 1.36
<at> <at> -1050,7 +1050,6 <at> <at>
char *buf = data->state.buffer;
ssize_t nread;
struct TELNET *tn;
- struct timeval now; /* current time */
code = init_telnet(conn);
if(code)
<at> <at> -1205,6 +1204,7 <at> <at>
}
}
if(data->set.timeout) {
+ struct timeval now; /* current time */
(Continue reading)
RSS Feed