diff options
author | Eduardo Chappa <chappa@washington.edu> | 2021-03-28 22:10:03 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2021-03-28 22:10:03 -0600 |
commit | 24f85bc165077c8089d1d79e33c524573b90f68d (patch) | |
tree | 330371f75e9eb6daaf740ddf3606c9769bbc35ba /imap/src | |
parent | c5a870b30c43914ed8414b9f54bed3da27057d79 (diff) | |
download | alpine-24f85bc165077c8089d1d79e33c524573b90f68d.tar.xz |
* Many spelling errors corrected by Jens Schleusener. Thank you!
Diffstat (limited to 'imap/src')
-rw-r--r-- | imap/src/c-client/misc.c | 4 | ||||
-rw-r--r-- | imap/src/mailutil/mailutil.1 | 2 | ||||
-rw-r--r-- | imap/src/osdep/amiga/tcp_ami.c | 2 | ||||
-rw-r--r-- | imap/src/osdep/nt/yunchan.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/imap/src/c-client/misc.c b/imap/src/c-client/misc.c index 0f26a9c3..0ddab9cc 100644 --- a/imap/src/c-client/misc.c +++ b/imap/src/c-client/misc.c @@ -43,7 +43,7 @@ unsigned char *ucase (unsigned char *s) { unsigned char *t; - /* if lowercase covert to upper */ + /* if lowercase convert to upper */ for (t = s; *t; t++) if ((*t >= 'a') && (*t <= 'z')) *t -= ('a' - 'A'); return s; /* return string */ } @@ -59,7 +59,7 @@ unsigned char *ucase (unsigned char *s) unsigned char *lcase (unsigned char *s) { unsigned char *t; - /* if uppercase covert to lower */ + /* if uppercase convert to lower */ for (t = s; *t; t++) if ((*t >= 'A') && (*t <= 'Z')) *t += ('a' - 'A'); return s; /* return string */ } diff --git a/imap/src/mailutil/mailutil.1 b/imap/src/mailutil/mailutil.1 index c33bb53b..a0063d5f 100644 --- a/imap/src/mailutil/mailutil.1 +++ b/imap/src/mailutil/mailutil.1 @@ -141,7 +141,7 @@ or .B -merge MODE is specified, a merging transfer is performed. The .B MODE -argument indicats the type of merge: +argument indicates the type of merge: .PP .B -m[erge] prompt indicates that the user should be asked for an alternative name to create. diff --git a/imap/src/osdep/amiga/tcp_ami.c b/imap/src/osdep/amiga/tcp_ami.c index c0666bd3..cb3198da 100644 --- a/imap/src/osdep/amiga/tcp_ami.c +++ b/imap/src/osdep/amiga/tcp_ami.c @@ -152,7 +152,7 @@ TCPSTREAM *tcp_open (char *host,char *service,unsigned long port) sin.sin_family = he->h_addrtype; /* copy host name */ strcpy (hostname,he->h_name); -#ifdef HOST_NOT_FOUND /* muliple addresses only on DNS systems */ +#ifdef HOST_NOT_FOUND /* multiple addresses only on DNS systems */ for (sock = -1,i = 0; (sock < 0) && (s = he->h_addr_list[i]); i++) { if (i && !silent) mm_log (tmp,WARN); memcpy (&sin.sin_addr,s,he->h_length); diff --git a/imap/src/osdep/nt/yunchan.c b/imap/src/osdep/nt/yunchan.c index 6c8995fe..05c0326a 100644 --- a/imap/src/osdep/nt/yunchan.c +++ b/imap/src/osdep/nt/yunchan.c @@ -209,7 +209,7 @@ unsigned long unix_crlflen (STRING *s) return i; } -/* Undoubtably, I'm going to regret these two routines in the future. I +/* Undoubtedly, I'm going to regret these two routines in the future. I * regret them now. Their purpose is to work around two problems in the * VC++ 6.0 C library: * (1) tmpfile() creates the file in the current directory instead of a |