From c1b703f95cb35798c4948aa01b9cb75184c29522 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 4 Sep 2012 15:24:46 +0200 Subject: s3: in sys_popen(), add a debug message for failed extract_args() --- source3/lib/system.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/lib/system.c b/source3/lib/system.c index 58f7b478ad..df7806558d 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -1190,6 +1190,7 @@ int sys_popen(const char *command) argl = extract_args(NULL, command); if (argl == NULL) { + DEBUG(0, ("sys_popen: extract_args() failed: %s\n", strerror(errno))); goto err_exit; } -- cgit