From: Michael Adam Date: Tue, 4 Sep 2012 13:24:46 +0000 (+0200) Subject: s3: in sys_popen(), add a debug message for failed extract_args() X-Git-Tag: samba-4.0.0rc1~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1b703f95cb35798c4948aa01b9cb75184c29522;p=thirdparty%2Fsamba.git s3: in sys_popen(), add a debug message for failed extract_args() --- diff --git a/source3/lib/system.c b/source3/lib/system.c index 58f7b478ad4..df7806558db 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; }