summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2012-05-27 12:21:37 -0400
committerPhil Pennock <pdp@exim.org>2012-05-27 12:21:37 -0400
commit4789da3a20432b8ce9cdccfb0713c027f91447c9 (patch)
tree28793e01e39ea0de5aa1b2abecacef38f27dd253
parentf0033d1eda2bf74747bd1034a404a71b1ce7c2ea (diff)
downloadexim4-4789da3a20432b8ce9cdccfb0713c027f91447c9.tar.gz
typo fix: "overriden" -> "overridden" from Andreas Metzler
-rw-r--r--src/src/buildconfig.c2
-rw-r--r--src/src/exim.h2
-rw-r--r--src/src/tls-gnu.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/src/buildconfig.c b/src/src/buildconfig.c
index c90d940aa..62114fc09 100644
--- a/src/src/buildconfig.c
+++ b/src/src/buildconfig.c
@@ -849,7 +849,7 @@ else if (isgroup)
/* how many bits Exim, as a client, demands must be in D-H */
/* as of GnuTLS 2.12.x, we ask for "normal" for D-H PK; before that, we
specify the number of bits. We've stuck with the historical value, but
- it can be overriden. */
+ it can be overridden. */
else if ((strcmp(name, "EXIM_CLIENT_DH_MIN_BITS") == 0) ||
(strcmp(name, "EXIM_SERVER_DH_BITS_PRE2_12") == 0))
{
diff --git a/src/src/exim.h b/src/src/exim.h
index c18c9aef3..32871660d 100644
--- a/src/src/exim.h
+++ b/src/src/exim.h
@@ -55,7 +55,7 @@ making unique names. */
#define LOCALHOST_MAX 10
#endif
-/* If not overriden by os.h, dynamic libraries have filenames ending .so */
+/* If not overridden by os.h, dynamic libraries have filenames ending .so */
#ifndef DYNLIB_FN_EXT
# define DYNLIB_FN_EXT "so"
#endif
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index 7aab309e6..c8bf634bc 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -1231,7 +1231,7 @@ if ((rc < 0) || (verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED)) != 0)
return FALSE;
}
DEBUG(D_tls)
- debug_printf("TLS verify failure overriden (host in tls_try_verify_hosts)\n");
+ debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
}
else
{