diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-09-16 11:27:08 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-09-16 11:27:08 +0000 |
commit | fb5e0d85d370d5db69b2fd1caf4a342916943142 (patch) | |
tree | b7f865216ca4b40a4a6e4535dfa6677700a27efc /src/arm | |
parent | 6bb5515d5ad101a565179762947477d1e8269577 (diff) |
-fixing #2546
git-svn-id: https://gnunet.org/svn/gnunet@23833 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/arm')
-rw-r--r-- | src/arm/gnunet-arm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/arm/gnunet-arm.c b/src/arm/gnunet-arm.c index 84d91355af..d84de1c7ab 100644 --- a/src/arm/gnunet-arm.c +++ b/src/arm/gnunet-arm.c @@ -412,8 +412,6 @@ cps_loop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) int main (int argc, char *const *argv) { - static unsigned long long temp_timeout_ms; - static const struct GNUNET_GETOPT_CommandLineOption options[] = { {'e', "end", NULL, gettext_noop ("stop all GNUnet services"), GNUNET_NO, &GNUNET_GETOPT_set_one, &end}, @@ -433,7 +431,7 @@ main (int argc, char *const *argv) GNUNET_NO, &GNUNET_GETOPT_set_one, &quiet}, {'T', "timeout", NULL, gettext_noop ("timeout for completing current operation"), - GNUNET_YES, &GNUNET_GETOPT_set_ulong, &temp_timeout_ms}, + GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &timeout}, {'I', "info", NULL, gettext_noop ("List currently running services"), GNUNET_NO, &GNUNET_GETOPT_set_one, &list}, {'O', "no-stdout", NULL, gettext_noop ("Don't let gnunet-service-arm inherit standard output"), @@ -443,9 +441,6 @@ main (int argc, char *const *argv) GNUNET_GETOPT_OPTION_END }; - if (temp_timeout_ms > 0) - timeout.rel_value = temp_timeout_ms; - if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv)) return 2; |