summaryrefslogtreecommitdiff
path: root/bus/config-parser.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2017-11-14 13:59:12 +0000
committerSimon McVittie <smcv@collabora.com>2017-11-15 12:07:22 +0000
commit789750feee5bdc304e2486ea7e8700f94a32efc7 (patch)
tree21ad50790a0ff48fbcbff9778680758006408e99 /bus/config-parser.c
parent9daf727236f94d4341458b30ad2d0aaab3688094 (diff)
downloaddbus-789750feee5bdc304e2486ea7e8700f94a32efc7.tar.gz
Remove commented-out printf debugging
Printing to stdout would interfere with generating TAP syntax. Reviewed-by: Philip Withnall <withnall@endlessm.com> Signed-off-by: Simon McVittie <smcv@collabora.com> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=103601
Diffstat (limited to 'bus/config-parser.c')
-rw-r--r--bus/config-parser.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/bus/config-parser.c b/bus/config-parser.c
index be27d38c..8752fdef 100644
--- a/bus/config-parser.c
+++ b/bus/config-parser.c
@@ -2016,8 +2016,6 @@ bus_config_parser_start_element (BusConfigParser *parser,
_DBUS_ASSERT_ERROR_IS_CLEAR (error);
- /* printf ("START: %s\n", element_name); */
-
t = top_element_type (parser);
if (t == ELEMENT_NONE)
@@ -2217,8 +2215,6 @@ bus_config_parser_end_element (BusConfigParser *parser,
_DBUS_ASSERT_ERROR_IS_CLEAR (error);
- /* printf ("END: %s\n", element_name); */
-
t = top_element_type (parser);
if (t == ELEMENT_NONE)
@@ -2566,16 +2562,6 @@ bus_config_parser_content (BusConfigParser *parser,
_DBUS_ASSERT_ERROR_IS_CLEAR (error);
-#if 0
- {
- const char *c_str;
-
- _dbus_string_get_const_data (content, &c_str);
-
- printf ("CONTENT %d bytes: %s\n", _dbus_string_get_length (content), c_str);
- }
-#endif
-
e = peek_element (parser);
if (e == NULL)
{