From 023dc2eb8681190ff4ce106aa90dd3204643f4cd Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 18 Feb 2011 15:29:31 -0800 Subject: [PATCH 1/1] config.c: remove config debug lines. Signed-off-by: Greg Kroah-Hartman --- config.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config.c b/config.c index 7315c69..346fed8 100644 --- a/config.c +++ b/config.c @@ -140,7 +140,7 @@ static int get_key(struct session *session, char *line, char **key, char **value * the value. */ } - printf("%s = %s\n", *key, *value); + /* printf("%s = %s\n", *key, *value); */ return 0; } @@ -309,7 +309,10 @@ static void process_line(struct session *session, char *key, char *value) break; if (strncasecmp(item->key, key, strlen(item->key)) == 0) { - printf("calling %p, for key = '%s' and value = '%s'\n", item->callback, key, value); + /* + * printf("calling %p, for key = '%s' and value = * '%s'\n", + * item->callback, key, value); + */ result = item->callback(session, value); if (!result) return; -- 2.39.5