Retries: rework DB keys, and fix exinext IPv6. Bug 3086
[exim.git] / src / src / string.c
index baa19f426b844a9dc290a9bff11911ae85cede78..a627611afa32b424d843875937df253a1dc565ab 100644 (file)
@@ -1234,13 +1234,6 @@ return g;
 }
 
 
-gstring *
-string_cat(gstring * g, const uschar * s)
-{
-return string_catn(g, s, Ustrlen(s));
-}
-
-
 
 /*************************************************
 *        Append strings to another string        *
@@ -1705,7 +1698,7 @@ while (*fp)
        }
 
       /* If a width is not specified and the precision is specified, set
-      the width to the precision, or the string length if shorted. */
+      the width to the precision, or the string length if shorter. */
 
       else if (precision >= 0)
        width = precision < slen ? precision : slen;