summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-03-09 13:01:31 -0400
committerDan Winship <danw@gnome.org>2014-03-09 13:02:06 -0400
commit76cd3dcd6a3eb621cf4976457c9d1b2ab9c0e468 (patch)
tree72aaa8a25e428786c94be5fee52bd3eae1ad6e18
parent68735c66778188f4c8cbe531f7802b8c8cb188fd (diff)
downloadlibsoup-76cd3dcd6a3eb621cf4976457c9d1b2ab9c0e468.tar.gz
test-utils: change http_debug command-line flag
g_test_init() intercepts "-h" for "help", so make http-debug be "-H"
-rw-r--r--tests/test-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-utils.c b/tests/test-utils.c
index 1d0d775b..69a9426b 100644
--- a/tests/test-utils.c
+++ b/tests/test-utils.c
@@ -38,7 +38,7 @@ static GOptionEntry debug_entry[] = {
{ "debug", 'd', G_OPTION_FLAG_NO_ARG,
G_OPTION_ARG_CALLBACK, increment_debug_level,
"Enable (or increase) test-specific debugging", NULL },
- { "http-debug", 'h', G_OPTION_FLAG_NO_ARG,
+ { "http-debug", 'H', G_OPTION_FLAG_NO_ARG,
G_OPTION_ARG_CALLBACK, increment_http_debug_level,
"Enable (or increase) HTTP-level debugging", NULL },
{ NULL }