diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-05-13 19:16:15 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-05-13 19:16:15 +0000 |
commit | 639df3f6aea9c37507c9d90dcd0e32aaf23c02d6 (patch) | |
tree | 710a76bbeeb5e991401e2a2b3dd33f72c12dc47b | |
parent | 867c8ab5fe513c93f15f5de5439cf56e31c4efc7 (diff) |
-fix segv
git-svn-id: https://gnunet.org/svn/gnunet@21465 140774ce-b5e7-0310-ab8b-a85725594a96
-rw-r--r-- | src/nat/test_nat_test.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/nat/test_nat_test.c b/src/nat/test_nat_test.c index 846d9b08e9..8f1e034440 100644 --- a/src/nat/test_nat_test.c +++ b/src/nat/test_nat_test.c @@ -30,10 +30,6 @@ #include "gnunet_util_lib.h" #include "gnunet_nat_lib.h" - -#define VERBOSE GNUNET_NO - - /** * Time to wait before stopping NAT test, in seconds */ @@ -84,28 +80,16 @@ main (int argc, char *const argv[]) GNUNET_GETOPT_OPTION_END }; struct GNUNET_OS_Process *gns; - int nat_res; - char *const argv_prog[] = { "test-nat-test", "-c", "test_nat_test_data.conf", - "-L", -#if VERBOSE - "DEBUG", -#else - "WARNING", -#endif NULL }; GNUNET_log_setup ("test-nat-test", -#if VERBOSE - "DEBUG", -#else "WARNING", -#endif NULL); nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server"); @@ -120,12 +104,9 @@ main (int argc, char *const argv[]) gns = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-nat-server", "gnunet-nat-server", -#if VERBOSE - "-L", "DEBUG", -#endif "-c", "test_nat_test_data.conf", "12345", NULL); GNUNET_assert (NULL != gns); - GNUNET_PROGRAM_run (5, argv_prog, "test-nat-test", "nohelp", options, &run, + GNUNET_PROGRAM_run (3, argv_prog, "test-nat-test", "nohelp", options, &run, NULL); GNUNET_break (0 == GNUNET_OS_process_kill (gns, SIGTERM)); GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (gns)); |