diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-06-28 11:04:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-06-28 11:04:34 +0000 |
commit | 13f1b3693b5f5db62d91a03625eb7fd8aef201da (patch) | |
tree | fbd8e27de5b934e160bf008266e484ff86b784b8 /socket.c | |
parent | 1b0445caadad8c59d0fc9ead943d4aa3f0f59275 (diff) | |
download | fetchmail-13f1b3693b5f5db62d91a03625eb7fd8aef201da.tar.gz fetchmail-13f1b3693b5f5db62d91a03625eb7fd8aef201da.tar.bz2 fetchmail-13f1b3693b5f5db62d91a03625eb7fd8aef201da.zip |
Try to beat a sign-extension bug.
svn path=/trunk/; revision=2912
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -698,7 +698,6 @@ int SSLOpen(int sock, char *mycert, char *mykey, char *servercname ) int SockClose(int sock) /* close a socket gracefully */ { - char ch; #ifdef SSL_ENABLE SSL *ssl; @@ -721,6 +720,7 @@ int SockClose(int sock) * This stops sends but allows receives (effectively, it sends a * TCP <FIN>). */ if (shutdown(sock, 1) == 0) { + char ch; /* If there is any data still waiting in the queue, discard it. * Call recv() until either it returns 0 (meaning we received a FIN) * or any error occurs. This makes sure all data sent by the other |