aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-10 22:47:57 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-10 22:47:57 +0000
commit7e5c0a94bacdfe6e1c65035b16fd97a77398df12 (patch)
tree70380ec85a0f4841247de81e8359e063da7486c1 /src/integration-tests
parentdf62a12c9b51fd13cc37058d4a88a32d93386d79 (diff)
downloadgnunet-7e5c0a94bacdfe6e1c65035b16fd97a77398df12.tar.gz
gnunet-7e5c0a94bacdfe6e1c65035b16fd97a77398df12.zip
LRN: new utf8 argv converter for W32, converting strings on command-line to UTF-8 for all command-line tools.
Diffstat (limited to 'src/integration-tests')
-rw-r--r--src/integration-tests/connection_watchdog.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/integration-tests/connection_watchdog.c b/src/integration-tests/connection_watchdog.c
index a06b5a763..bcf9d0379 100644
--- a/src/integration-tests/connection_watchdog.c
+++ b/src/integration-tests/connection_watchdog.c
@@ -1090,6 +1090,10 @@ main (int argc, char *const *argv)
1090 GNUNET_NO, &GNUNET_GETOPT_set_one, &ping}, 1090 GNUNET_NO, &GNUNET_GETOPT_set_one, &ping},
1091 GNUNET_GETOPT_OPTION_END 1091 GNUNET_GETOPT_OPTION_END
1092 }; 1092 };
1093
1094 if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
1095 return 2;
1096
1093 return (GNUNET_OK == 1097 return (GNUNET_OK ==
1094 GNUNET_PROGRAM_run (argc, argv, "cn", 1098 GNUNET_PROGRAM_run (argc, argv, "cn",
1095 gettext_noop ("help text"), options, &run, 1099 gettext_noop ("help text"), options, &run,