summaryrefslogtreecommitdiff
path: root/imap
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2021-03-28 22:10:03 -0600
committerEduardo Chappa <chappa@washington.edu>2021-03-28 22:10:03 -0600
commit24f85bc165077c8089d1d79e33c524573b90f68d (patch)
tree330371f75e9eb6daaf740ddf3606c9769bbc35ba /imap
parentc5a870b30c43914ed8414b9f54bed3da27057d79 (diff)
downloadalpine-24f85bc165077c8089d1d79e33c524573b90f68d.tar.xz
* Many spelling errors corrected by Jens Schleusener. Thank you!
Diffstat (limited to 'imap')
-rw-r--r--imap/NOTICE2
-rw-r--r--imap/docs/FAQ.html2
-rw-r--r--imap/docs/FAQ.txt2
-rw-r--r--imap/docs/internal.txt2
-rw-r--r--imap/src/c-client/misc.c4
-rw-r--r--imap/src/mailutil/mailutil.12
-rw-r--r--imap/src/osdep/amiga/tcp_ami.c2
-rw-r--r--imap/src/osdep/nt/yunchan.c2
8 files changed, 9 insertions, 9 deletions
diff --git a/imap/NOTICE b/imap/NOTICE
index c9915813..b5b5b947 100644
--- a/imap/NOTICE
+++ b/imap/NOTICE
@@ -1,4 +1,4 @@
-PANDA IMAP tookit notices:
+PANDA IMAP toolkit notices:
The Panda IMAP Toolkit (c-client API, dmail, imapd, ipop2d, ipop3d,
mailutil, mlock, mtest, and tmail software; and its included text) was
diff --git a/imap/docs/FAQ.html b/imap/docs/FAQ.html
index f2496b99..58d8c5a6 100644
--- a/imap/docs/FAQ.html
+++ b/imap/docs/FAQ.html
@@ -2371,7 +2371,7 @@ for better performance.
<p>The IMAP server also doesn't know whether your preferred
subdirectory for mailbox files is "mail/", ".mail/", "Mail/",
"Mailboxes/", or any of a zillion other possibilities. If one such name
- were chosen, it would undoubtably anger the partisans of all the other
+ were chosen, it would undoubtedly anger the partisans of all the other
names.</p>
<p>It is possible to modify the software so that the default connected
diff --git a/imap/docs/FAQ.txt b/imap/docs/FAQ.txt
index 2fac001f..f8418120 100644
--- a/imap/docs/FAQ.txt
+++ b/imap/docs/FAQ.txt
@@ -1650,7 +1650,7 @@ mtest.c:515: the `gets' function is dangerous and should not be used.
The IMAP server also doesn't know whether your preferred
subdirectory for mailbox files is "mail/", ".mail/", "Mail/",
"Mailboxes/", or any of a zillion other possibilities. If one
- such name were chosen, it would undoubtably anger the partisans
+ such name were chosen, it would undoubtedly anger the partisans
of all the other names.
It is possible to modify the software so that the default
diff --git a/imap/docs/internal.txt b/imap/docs/internal.txt
index cc3def1d..7ccd356b 100644
--- a/imap/docs/internal.txt
+++ b/imap/docs/internal.txt
@@ -2690,7 +2690,7 @@ possibly shown to the user.
PARSE An RFC 822 parsing error. Since bogus headers are
all-too-common in the real world, these can often be
- ignored on the "garbage in, garbage out" princple.
+ ignored on the "garbage in, garbage out" principle.
However, since surprising results can be yielded when
trying to parse garbage, this message should be logged
somewhere so it can be figured out what happened.
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