From 89647a2c0a47705a66bc856b9d4f24420b2775b3 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sun, 2 Apr 2006 11:25:22 +0000 Subject: Fix typo on comment. svn path=/branches/BRANCH_6-3/; revision=4771 --- socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'socket.c') diff --git a/socket.c b/socket.c index e807ad77..6375163a 100644 --- a/socket.c +++ b/socket.c @@ -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))) { -- cgit v1.2.3