lib:util: Move debug message for mkdir failing to log level 1
authorAndreas Schneider <asn@samba.org>
Thu, 7 Mar 2019 11:31:42 +0000 (12:31 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 8 Mar 2019 01:41:27 +0000 (01:41 +0000)
If you connnect to a host with smbclient this gets always printed.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13823

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Fri Mar  8 01:41:27 UTC 2019 on sn-devel-144

lib/util/util.c

index 19824b550c0a6511d7c8b3b30be435f408b31f12..b8eed3ca28c526de78807cf2936d0618538d794b 100644 (file)
@@ -294,9 +294,9 @@ _PUBLIC_ bool directory_create_or_exist(const char *dname,
        old_umask = umask(0);
        ret = mkdir(dname, dir_perms);
        if (ret == -1 && errno != EEXIST) {
-               DEBUG(0, ("mkdir failed on directory "
-                         "%s: %s\n", dname,
-                         strerror(errno)));
+               DBG_WARNING("mkdir failed on directory %s: %s\n",
+                           dname,
+                           strerror(errno));
                umask(old_umask);
                return false;
        }