From f601e6e0484d77d2c43eab05f80bccf28c9055aa Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Tue, 5 May 1998 09:04:49 +0000 Subject: patches from jean francois: couple of minor bugs (This used to be commit 532b3956c66eda1b7e787b1c6906bcf574f66216) --- source3/rpc_parse/parse_lsa.c | 2 +- source3/rpc_server/srv_util.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c index 6eb42fc749..0a49fb7b4d 100644 --- a/source3/rpc_parse/parse_lsa.c +++ b/source3/rpc_parse/parse_lsa.c @@ -474,7 +474,7 @@ void lsa_io_trans_names(char *desc, LSA_TRANS_NAME_ENUM *trn, prs_struct *ps, in prs_uint32(temp, ps, depth, &(trn->ptr_name[i])); /* pointer to translated name */ } - for (i = 0; i < trn->num_entries2; i++) + for (i = 0, i2 = 0; i < trn->num_entries2; i++) { if (trn->ptr_name[i] != 0) { diff --git a/source3/rpc_server/srv_util.c b/source3/rpc_server/srv_util.c index 90a811e490..898269dc4a 100644 --- a/source3/rpc_server/srv_util.c +++ b/source3/rpc_server/srv_util.c @@ -401,9 +401,8 @@ uint32 lookup_user_name(uint32 rid, char *user_name, uint32 *type) return 0x0; } - DEBUG(5,(" uid: %d", unix_uid)); - unix_uid = uid_to_user_rid(rid); + DEBUG(5,(" uid: %d", unix_uid)); /* ok, it's a user. find the user account */ become_root(True); -- cgit