The branch, master has been updated
       via  a233c0c s3-lsa: Fix sid in DEBUG in_lsa_EnumAccountRights.
      from  7c9dab4 tevent: include libreplace heade before tevent header

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit a233c0c0d2a307a64994480bd7b2c783e28fe72a
Author: Günther Deschner <[email protected]>
Date:   Tue Sep 21 20:54:45 2010 -0700

    s3-lsa: Fix sid in DEBUG in_lsa_EnumAccountRights.
    
    Andrew, you removed the sid_copy buit forgot the sid, please check.
    
    Guenther

-----------------------------------------------------------------------

Summary of changes:
 source3/rpc_server/srv_lsa_nt.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/rpc_server/srv_lsa_nt.c b/source3/rpc_server/srv_lsa_nt.c
index 191cdfe..fc19969 100644
--- a/source3/rpc_server/srv_lsa_nt.c
+++ b/source3/rpc_server/srv_lsa_nt.c
@@ -2312,7 +2312,6 @@ NTSTATUS _lsa_EnumAccountRights(struct pipes_struct *p,
 {
        NTSTATUS status;
        struct lsa_info *info = NULL;
-       struct dom_sid sid;
        PRIVILEGE_SET *privileges;
 
        /* find the connection policy handle. */
@@ -2341,7 +2340,7 @@ NTSTATUS _lsa_EnumAccountRights(struct pipes_struct *p,
        }
 
        DEBUG(10,("_lsa_EnumAccountRights: %s has %d privileges\n",
-                 sid_string_dbg(&sid), privileges->count));
+                 sid_string_dbg(r->in.sid), privileges->count));
 
        status = init_lsa_right_set(p->mem_ctx, r->out.rights, privileges);
 


-- 
Samba Shared Repository

Reply via email to