tidying
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 16 Dec 2023 16:31:06 +0000 (16:31 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 16 Dec 2023 16:31:06 +0000 (16:31 +0000)
doc/doc-docbook/spec.xfpt
src/src/EDITME
src/src/receive.c
src/src/store.c

index 0007d255e97503f6b79524b3c3583f262c73652f..cc801a3a517270cd9b8ac6fd82fbc9b0eae77689 100644 (file)
@@ -6742,11 +6742,11 @@ Exim variables you need to construct the database query.
 
 For the string-expansion kind of lookups, the query is given in the first
 bracketed argument of the &${lookup ...}$& expansion.
-For the list-argument kind of lookup the quury is given by the remainder of the
+For the list-argument kind of lookup the query is given by the remainder of the
 list item after the first semicolon.
 
 .cindex "tainted data" "quoting for lookups"
-If tainted data is used in the query then it should be quuted by
+If tainted data is used in the query then it should be quoted by
 using the &*${quote_*&<&'lookup-type'&>&*:*&<&'string'&>&*}*& expansion operator
 appropriate for the lookup.
 .endlist
index f68b3f104d99dbc7f96c20ac3512861931f6c9d7..85d24f73fd935f1683da79d7e889bc768b7febd9 100644 (file)
@@ -52,6 +52,7 @@
 # they are correctly installed, via their compatibility interfaces. However,
 # Exim can also be configured to use the native calls for Berkeley DB (obsolete
 # versions 1.85, 2.x, 3.x, or the current 4.x version) and also for gdbm.
+# See definitions for DBMLIB below.
 
 # For some operating systems, a default DBM library (other than ndbm) is
 # selected by a setting in the OS-specific Makefile. Most modern OS now have
index c4b80c2367e9a10070de174a44ef249324fe45de..e35400aeceba42655187926fd7dddee9546228a2 100644 (file)
@@ -4391,7 +4391,7 @@ data file will be flushed(!) out thereby. Nevertheless, it is theoretically
 possible for fclose() to fail - and this has been seen on obscure filesystems
 (probably one that delayed the actual media write as long as possible)
 but what to do? What has happened to the lock if this happens?
-It's a mes because we already logged the acceptance.
+It's a mess because we already logged the acceptance.
 We can at least log the issue, try to remove spoolfiles and respond with
 a temp-reject.  We do not want to close before logging acceptance because
 we want to hold the lock until we know that logging worked.
index 684f83cf0c27557937aa058e1060211616b0bbeb..03322a097ae89c8513a5a4446bf15e024bea4750 100644 (file)
@@ -1145,11 +1145,11 @@ Returns:      pointer to gotten store (panic on failure)
 */
 
 static void *
-internal_store_malloc(size_t size, const char *func, int line)
+internal_store_malloc(size_t size, const char * func, int line)
 {
 void * yield;
 
-/* Check specifically for a possibly result of conversion from
+/* Check specifically for a possible result of conversion from
 a negative int, to the (unsigned, wider) size_t */
 
 if (size >= INT_MAX/2)