diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-06-28 03:51:31 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-06-28 03:51:31 +0000 |
commit | 01eec582433744967d35d611e6b153262fa8f9f2 (patch) | |
tree | d27f0364b6750e04af985b5e45a9a04c55e242b8 /source3/utils | |
parent | 060b73bd8e069633cb50381f4e3dd14f0fd99968 (diff) | |
download | samba-01eec582433744967d35d611e6b153262fa8f9f2.tar.gz samba-01eec582433744967d35d611e6b153262fa8f9f2.tar.bz2 samba-01eec582433744967d35d611e6b153262fa8f9f2.zip |
make net join a bit less verbose
these errors happen all the time, so they shouldn't be level 0
(This used to be commit abc2aed26c6cb12a86987a3846ca5c9f7df9a5ae)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 344b8000ed..b202a7e8cc 100644 --- a/source3/utils/net_rpc.c +++ b/source3/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")); } |