diff options
author | Michael Adam <obnox@samba.org> | 2012-09-04 14:21:37 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-09-04 20:39:20 +0200 |
commit | e7d385c366f04586c6e1490ea0a8cd4b1225f552 (patch) | |
tree | 9f38a883408365d7c1877cfeb884f11b743699a0 | |
parent | b1966f31188abcadabb48090cccfccaae150445e (diff) | |
download | samba-e7d385c366f04586c6e1490ea0a8cd4b1225f552.tar.gz samba-e7d385c366f04586c6e1490ea0a8cd4b1225f552.tar.bz2 samba-e7d385c366f04586c6e1490ea0a8cd4b1225f552.zip |
s3: in sys_popen(), fix a debug message
-rw-r--r-- | source3/lib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 2881fd664a..8c9c05f4de 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); |