summaryrefslogtreecommitdiffstats
path: root/source/utils
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-06-28 03:51:31 +0000
committerAndrew Tridgell <tridge@samba.org>2002-06-28 03:51:31 +0000
commitabc2aed26c6cb12a86987a3846ca5c9f7df9a5ae (patch)
treec7eca3bafb8454e1d04d8220496773e901a2e856 /source/utils
parent98a119ee58286b708a54dcba9ffcfbdcf8cb6bba (diff)
downloadsamba-abc2aed26c6cb12a86987a3846ca5c9f7df9a5ae.tar.gz
samba-abc2aed26c6cb12a86987a3846ca5c9f7df9a5ae.tar.xz
samba-abc2aed26c6cb12a86987a3846ca5c9f7df9a5ae.zip
make net join a bit less verbose
these errors happen all the time, so they shouldn't be level 0
Diffstat (limited to 'source/utils')
-rw-r--r--source/utils/net_rpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/net_rpc.c b/source/utils/net_rpc.c
index 344b8000ed5..b202a7e8cc6 100644
--- a/source/utils/net_rpc.c
+++ b/source/utils/net_rpc.c
@@ -147,7 +147,7 @@ static int run_rpc_command(const char *pipe_name, int conn_flags,
nt_status = fn(domain_sid, cli, mem_ctx, argc, argv);
if (!NT_STATUS_IS_OK(nt_status)) {
- DEBUG(0, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
+ DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
} else {
DEBUG(5, ("rpc command function succedded\n"));
}