From: Michael Adam Date: Tue, 4 Sep 2012 12:21:37 +0000 (+0200) Subject: s3: in sys_popen(), fix a debug message X-Git-Tag: samba-4.0.0rc1~247 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7d385c366f04586c6e1490ea0a8cd4b1225f552;p=thirdparty%2Fsamba.git s3: in sys_popen(), fix a debug message --- diff --git a/source3/lib/system.c b/source3/lib/system.c index 2881fd664a7..8c9c05f4de0 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -1216,7 +1216,7 @@ int sys_popen(const char *command) ret = execv(argl[0], argl); if (ret == -1) { - DEBUG(0, ("sys_popen: ERROR executing dfree command " + DEBUG(0, ("sys_popen: ERROR executing command " "'%s': %s\n", command, strerror(errno))); } _exit (127);