]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
make net join a bit less verbose
authorAndrew Tridgell <tridge@samba.org>
Fri, 28 Jun 2002 03:51:31 +0000 (03:51 +0000)
committerAndrew Tridgell <tridge@samba.org>
Fri, 28 Jun 2002 03:51:31 +0000 (03:51 +0000)
these errors happen all the time, so they shouldn't be level 0

source/libsmb/cli_netlogon.c
source/libsmb/trust_passwd.c
source/utils/net_rpc.c

index 765f19a5fe70cc18c5aac88a23f43a4164247cb0..4f5ccb1e210682b9739e18b9008fa01b3245fccd 100644 (file)
@@ -197,7 +197,7 @@ NTSTATUS new_cli_nt_setup_creds(struct cli_state *cli,
        result = new_cli_net_auth2(cli, sec_chan, 0x000001ff, 
                                   &srv_chal);
        if (!NT_STATUS_IS_OK(result)) {
-                DEBUG(0,("cli_nt_setup_creds: auth2 challenge failed %s\n",
+                DEBUG(1,("cli_nt_setup_creds: auth2 challenge failed %s\n",
                         nt_errstr(result)));
         }
 
index 7491f15f5234400914e5ff0c9ba5236f80c93ab6..3b77f7330eb30a3b620bf742ef0cefce5bd846be 100644 (file)
@@ -39,7 +39,7 @@ static NTSTATUS just_change_the_password(struct cli_state *cli, TALLOC_CTX *mem_
                                   SEC_CHAN_WKSTA : SEC_CHAN_BDC, orig_trust_passwd_hash);
        
        if (!NT_STATUS_IS_OK(result)) {
-               DEBUG(0,("just_change_the_password: unable to setup creds (%s)!\n",
+               DEBUG(1,("just_change_the_password: unable to setup creds (%s)!\n",
                         nt_errstr(result)));
                return result;
        }
index 344b8000ed523c7f6f4274fed8c79b3a3fd16206..b202a7e8cc6abbfbffc74f6753cbd95a2aeafd4a 100644 (file)
@@ -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"));
        }