diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-07-20 08:59:58 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-07-20 08:59:58 +0000 |
commit | 27ca538a3c2ed78f5c0a6cf02b76a8729e450e2d (patch) | |
tree | 8f45c5982baac8c6cdc59c6eb3643f8d722c3243 /source3 | |
parent | f65440ff52139ce7710d03cbb6b37360e3391d32 (diff) | |
download | samba-27ca538a3c2ed78f5c0a6cf02b76a8729e450e2d.tar.gz samba-27ca538a3c2ed78f5c0a6cf02b76a8729e450e2d.tar.bz2 samba-27ca538a3c2ed78f5c0a6cf02b76a8729e450e2d.zip |
If we can't connect, make sure its a level 0 so we see it, and the reason.
(This used to be commit 6129718bea458ceb7669ecabc8cf0c8f908c7074)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index a62c3d8365..15e7c38002 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -768,7 +768,7 @@ static void usage(void) password, 0); if (!NT_STATUS_IS_OK(nt_status)) { - DEBUG(1,("Cannot connect to server. Error was %s\n", nt_errstr(nt_status))); + DEBUG(0,("Cannot connect to server. Error was %s\n", nt_errstr(nt_status))); return 1; } |