diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-04-02 11:25:22 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-04-02 11:25:22 +0000 |
commit | 89647a2c0a47705a66bc856b9d4f24420b2775b3 (patch) | |
tree | 27ddbad304a0217bc82775242a2b15bf724fc40c /socket.c | |
parent | 54833b53da596625b194c40732f67aa9dd0ece54 (diff) | |
download | fetchmail-89647a2c0a47705a66bc856b9d4f24420b2775b3.tar.gz fetchmail-89647a2c0a47705a66bc856b9d4f24420b2775b3.tar.bz2 fetchmail-89647a2c0a47705a66bc856b9d4f24420b2775b3.zip |
Fix typo on comment.
svn path=/branches/BRANCH_6-3/; revision=4771
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -441,7 +441,7 @@ int SockRead(int sock, char *buf, int len) } else if ((newline = memchr(bp, '\n', n)) != NULL) n = newline - bp + 1; /* Matthias Andree: SSL_read can return 0, in that case - * we must cal SSL_get_error to figure if there was + * we must call SSL_get_error to figure if there was * an error or just a "no data" condition */ if ((n = SSL_read(ssl, bp, n)) <= 0) { if ((n = SSL_get_error(ssl, n))) { |