From: Christian Grothoff Date: Tue, 11 Jan 2011 09:54:51 +0000 (+0000) Subject: fixing error message -- 1635 X-Git-Tag: initial-import-from-subversion-38251~19344 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=beb8d75e46567f06b36c0e9cd7b459526ca73571;p=oweals%2Fgnunet.git fixing error message -- 1635 --- diff --git a/src/util/getopt_helpers.c b/src/util/getopt_helpers.c index 746dc5267..5c4486b41 100644 --- a/src/util/getopt_helpers.c +++ b/src/util/getopt_helpers.c @@ -176,7 +176,7 @@ GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext 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 @@ GNUNET_GETOPT_set_uint (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx, 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;