diff options
Diffstat (limited to 'src/util/check_and_open.c')
-rw-r--r-- | src/util/check_and_open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/check_and_open.c b/src/util/check_and_open.c index 27ef1c88..c6261917 100644 --- a/src/util/check_and_open.c +++ b/src/util/check_and_open.c @@ -50,8 +50,8 @@ errno_t check_file(const char *filename, const int uid, const int gid, ret = follow_symlink ? stat(filename, stat_buf) : \ lstat(filename, stat_buf); if (ret == -1) { - DEBUG(1, ("lstat for [%s] failed: [%d][%s].\n", filename, errno, - strerror(errno))); + DEBUG(SSSDBG_TRACE_FUNC, ("lstat for [%s] failed: [%d][%s].\n", filename, errno, + strerror(errno))); return errno; } |