diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-03-14 10:39:49 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-03-14 12:00:46 +0100 |
commit | 687606b452ce6f9ebd853f4ffb569e513e38685c (patch) | |
tree | 51fb0c00ee60fc4f75ec506186b0c5aa6dc5796d /lib | |
parent | ab375526e8ec8f34a79195a62adb33548599c87d (diff) | |
download | samba-687606b452ce6f9ebd853f4ffb569e513e38685c.tar.gz samba-687606b452ce6f9ebd853f4ffb569e513e38685c.tar.bz2 samba-687606b452ce6f9ebd853f4ffb569e513e38685c.zip |
lib/util: don't start DEBUG output with 'error '
This confused the subunit code.
metze
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/util.c b/lib/util/util.c index 867da0a340..9f4fed07d6 100644 --- a/lib/util/util.c +++ b/lib/util/util.c @@ -153,7 +153,7 @@ _PUBLIC_ bool directory_create_or_exist(const char *dname, uid_t uid, if (errno == ENOENT) { /* Create directory */ if (mkdir(dname, dir_perms) == -1) { - DEBUG(0, ("error creating directory " + DEBUG(0, ("mkdir failed on directory " "%s: %s\n", dname, strerror(errno))); umask(old_umask); |