aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2011-04-28 23:18:46 +0200
committerMatthias Andree <matthias.andree@gmx.de>2011-04-28 23:18:46 +0200
commit2ef157e08bc4f8796223d179868a562648a5dbdd (patch)
tree2341d6138452d552fcc10e721f92063953d00695 /socket.c
parent358a8083e9801482b4550e7e660f385545e6029c (diff)
downloadfetchmail-2ef157e08bc4f8796223d179868a562648a5dbdd.tar.gz
fetchmail-2ef157e08bc4f8796223d179868a562648a5dbdd.tar.bz2
fetchmail-2ef157e08bc4f8796223d179868a562648a5dbdd.zip
Fix typo in comment.
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/socket.c b/socket.c
index fad21c50..6eadeef2 100644
--- a/socket.c
+++ b/socket.c
@@ -452,7 +452,7 @@ int SockRead(int sock, char *buf, int len)
/* OK... SSL_peek works a little different from MSG_PEEK
Problem is that SSL_peek can return 0 if there
is no data currently available. If, on the other
- hand, we loose the socket, we also get a zero, but
+ hand, we lose the socket, we also get a zero, but
the SSL_read then SEGFAULTS! To deal with this,
we'll check the error code any time we get a return
of zero from SSL_peek. If we have an error, we bail.