From 06c6ab430b223f6923fe74a4b8d11f3e626848a8 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Wed, 15 Jan 2020 21:41:39 -0700 Subject: * Fix a number of misspellings in the source code of Alpine. I hav only fixed those that belong to the source code of Alpine and do not come from an external source. List contributed by Jens Schleusener. --- imap/src/c-client/rfc822.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'imap/src/c-client/rfc822.c') diff --git a/imap/src/c-client/rfc822.c b/imap/src/c-client/rfc822.c index 6433bdbb..a1730954 100644 --- a/imap/src/c-client/rfc822.c +++ b/imap/src/c-client/rfc822.c @@ -1396,7 +1396,7 @@ char *rfc822_skip_comment (char **s,long trim) sprintf (tmp,"Unterminated comment: %.80s",*s); MM_LOG (tmp,PARSE); **s = '\0'; /* nuke duplicate messages in case reparse */ - return NIL; /* this is wierd if it happens */ + return NIL; /* this is weird if it happens */ case ' ': /* whitespace isn't significant */ break; default: /* random character */ @@ -1432,7 +1432,7 @@ static long rfc822_output_char (RFC822BUFFER *buf,int c) static long rfc822_output_data (RFC822BUFFER *buf,char *string,long len) { - while (len) { /* until request satified */ + while (len) { /* until request satisfied */ long i; if ((i = min (len,buf->end - buf->cur)) != 0L) { memcpy (buf->cur,string,i); @@ -2231,7 +2231,7 @@ unsigned char *rfc822_8bit (unsigned char *src,unsigned long srcl, * versions of c-client prior to imap-2005, they did not provide any * buffer checking at all. * - * As a half-hearted attempt, these new compatability functions for the + * As a half-hearted attempt, these new compatibility functions for the * legacy interfaces limit what they write to size SENDBUFLEN and will * fatal() if more than that is written. However, that isn't good enough * since several of these functions *append* to the buffer, and return an -- cgit v1.2.3-54-g00ecf