diff options
author | Michael Adam <obnox@samba.org> | 2007-06-22 22:30:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:34 -0500 |
commit | e8f99045c44cedd64e736dda4b84fb8d7eaf31a6 (patch) | |
tree | d9256265604d64c94bba48ecfcb59dd574789225 | |
parent | d1d2157153d7a4b3e7918bcc91c50445bf9a6771 (diff) | |
download | samba-e8f99045c44cedd64e736dda4b84fb8d7eaf31a6.tar.gz samba-e8f99045c44cedd64e736dda4b84fb8d7eaf31a6.tar.bz2 samba-e8f99045c44cedd64e736dda4b84fb8d7eaf31a6.zip |
r23592: Change a debuglevel to not clutter output when calling
net as a non-root user, e.g.
Michael
(This used to be commit bbbfd7f41ab85f269d115f19601729f16079b552)
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index a04c0f2fbd..f654dff37f 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3069,7 +3069,7 @@ static struct tdb_wrap *lp_regdb_open(void) reg_tdb = tdb_wrap_open(NULL, lock_path("registry.tdb"), 0, REG_TDB_FLAGS, O_RDWR, 0600); if (!reg_tdb) { - DEBUG(0, ("lp_regdb_open: failed to open %s: %s\n", + DEBUG(1, ("lp_regdb_open: failed to open %s: %s\n", lock_path("registry.tdb"), strerror(errno))); goto done; } |