Remove MSEC from option description.
authorFlorian Dold <florian.dold@gmail.com>
Mon, 29 Feb 2016 00:21:51 +0000 (00:21 +0000)
committerFlorian Dold <florian.dold@gmail.com>
Mon, 29 Feb 2016 00:21:51 +0000 (00:21 +0000)
The parser gives us microseconds (and not milliseconds)
when no suffix is used, the option description was wrong/confusing.

src/arm/gnunet-arm.c

index 4b53e988395650a16b5246e3664142d270a1647b..726365edec3aad002d05548d7e11acc4ffa0546a 100644 (file)
@@ -740,8 +740,8 @@ main (int argc, char *const *argv)
      GNUNET_NO, &GNUNET_GETOPT_set_one, &monitor},
     {'q', "quiet", NULL, gettext_noop ("don't print status messages"),
      GNUNET_NO, &GNUNET_GETOPT_set_one, &quiet},
-    {'T', "timeout", "MSECS",
-     gettext_noop ("timeout in MSECS milliseconds for completing current operation"),
+    {'T', "timeout", "DELAY",
+     gettext_noop ("exit with error status if operation does not finish after DELAY"),
      GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &timeout},
     {'I', "info", NULL, gettext_noop ("list currently running services"),
      GNUNET_NO, &GNUNET_GETOPT_set_one, &list},