Removed excess comma in usage fprint statement. Fixes #769
authorNigel Metheringham <nigel@exim.org>
Sun, 12 Oct 2008 09:58:13 +0000 (09:58 +0000)
committerNigel Metheringham <nigel@exim.org>
Sun, 12 Oct 2008 09:58:13 +0000 (09:58 +0000)
doc/doc-txt/ChangeLog
src/src/exim.c

index 419ca6fddbd5ff55c94ff47eb66e25e9c6f85386..a2a4db1df8d980c6824830142561cc94faf386a4 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.554 2008/09/29 11:41:07 nm4 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.555 2008/10/12 09:58:13 nm4 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -71,6 +71,9 @@ TF/09 Produce a more useful error message if an SMTP transport's hosts
 NM/06 Bugzilla 744: EXPN did not work under TLS.
       Patch provided by Phil Pennock
 
+NM/07 Bugzilla 769: Extraneous comma in usage fprintf
+      Patch provided by Richard Godbee
+
 
 Exim version 4.69
 -----------------
index 22b0a8c8c75f4f7b733c17b4543513fa61cee72c..b078c6000dab435574bc06bf308aa30e630cfc0a 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/exim.c,v 1.60 2008/01/17 13:03:35 tom Exp $ */
+/* $Cambridge: exim/src/src/exim.c,v 1.61 2008/10/12 09:58:13 nm4 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -1259,7 +1259,7 @@ exim_usage(uschar *progname)
 if (Ustrcmp(progname, US"-mailq") == 0)
   {
   fprintf(stderr,
-    "mailq - list the contents of the mail queue\n\n",
+    "mailq - list the contents of the mail queue\n\n"
     "For a list of options, see the Exim documentation.\n");
   exit(EXIT_FAILURE);
   }