diff options
author | Luke Leighton <lkcl@samba.org> | 1999-09-12 22:40:27 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-09-12 22:40:27 +0000 |
commit | ddf33698b517967deaa5e620dd65a2670a7779e6 (patch) | |
tree | 6a0ef2da9d5206ed770f2cb77944ca07fec61cf0 /source3/rpc_client | |
parent | 856a3e27405c3d92a56af6914e55af696a517f1c (diff) | |
download | samba-ddf33698b517967deaa5e620dd65a2670a7779e6.tar.gz samba-ddf33698b517967deaa5e620dd65a2670a7779e6.tar.bz2 samba-ddf33698b517967deaa5e620dd65a2670a7779e6.zip |
- initialising mach_passwd_file locks to zero (prev. uninit.)
- cleanup
- #defined report to sprintf as it's #defined to another function in
other uses of cmd_lsarpc.c
(This used to be commit 8fb2ff247a2fe0ec5ce0c232d8a3da9774f7e6ae)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_lsarpc.c | 6 | ||||
-rw-r--r-- | source3/rpc_client/cli_srvsvc.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 1c764c8b98..af00949325 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -264,7 +264,7 @@ BOOL lsa_lookup_names(struct cli_state *cli, uint16 fnum, if (p && r_l.status != 0) { /* report error code */ - DEBUG(0,("LSA_LOOKUP_NAMES: %s\n", get_nt_error_msg(r_l.status))); + DEBUG(1,("LSA_LOOKUP_NAMES: %s\n", get_nt_error_msg(r_l.status))); p = False; } @@ -390,10 +390,10 @@ BOOL lsa_lookup_sids(struct cli_state *cli, uint16 fnum, lsa_io_r_lookup_sids("", &r_l, &rbuf, 0); p = rbuf.offset != 0; - if (p && r_l.status != 0) + if (p && r_l.status != 0 && r_l.status != 0x107) { /* report error code */ - DEBUG(0,("LSA_LOOKUP_SIDS: %s\n", get_nt_error_msg(r_l.status))); + DEBUG(1,("LSA_LOOKUP_SIDS: %s\n", get_nt_error_msg(r_l.status))); p = False; } diff --git a/source3/rpc_client/cli_srvsvc.c b/source3/rpc_client/cli_srvsvc.c index 5e4af69c6a..c3d608c4b3 100644 --- a/source3/rpc_client/cli_srvsvc.c +++ b/source3/rpc_client/cli_srvsvc.c @@ -160,7 +160,7 @@ BOOL do_srv_net_srv_sess_enum(struct cli_state *cli, uint16 fnum, if (p && r_o.status != 0) { /* report error code */ - DEBUG(0,("SRV_R_NET_SRV_GET_INFO: %s\n", get_nt_error_msg(r_o.status))); + DEBUG(0,("SRV_R_NET_SRV_SESS_ENUM: %s\n", get_nt_error_msg(r_o.status))); p = 0; } |