gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r14145 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r14145 - gnunet/src/util
Date: Tue, 11 Jan 2011 10:54:52 +0100

Author: grothoff
Date: 2011-01-11 10:54:51 +0100 (Tue, 11 Jan 2011)
New Revision: 14145

Modified:
   gnunet/src/util/getopt_helpers.c
Log:
fixing error message -- 1635

Modified: gnunet/src/util/getopt_helpers.c
===================================================================
--- gnunet/src/util/getopt_helpers.c    2011-01-10 21:54:11 UTC (rev 14144)
+++ gnunet/src/util/getopt_helpers.c    2011-01-11 09:54:51 UTC (rev 14145)
@@ -176,7 +176,7 @@
   if (1 != SSCANF (value, "%llu", val))
     {
       fprintf (stderr,
-               _("You must pass a number to the `%s' option.\n"), "-X");
+               _("You must pass a number to the `%s' option.\n"), option);
       return GNUNET_SYSERR;
     }
   return GNUNET_OK;
@@ -192,7 +192,7 @@
   if (1 != SSCANF (value, "%u", val))
     {
       fprintf (stderr,
-               _("You must pass a number to the `%s' option.\n"), "-X");
+               _("You must pass a number to the `%s' option.\n"), option);
       return GNUNET_SYSERR;
     }
   return GNUNET_OK;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]