diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-07 20:04:48 +0100 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-03-07 20:52:53 +0100 |
commit | 6013d7589bc5ef0ca53eb2bab3b4cd791de2a027 (patch) | |
tree | 503bf9c18c0f19cb287f3fe4b35658615b7df685 /source3 | |
parent | b12fbc22aca6ae9ae0c216cf5b0c7fea374d4e6d (diff) | |
download | samba-6013d7589bc5ef0ca53eb2bab3b4cd791de2a027.tar.gz samba-6013d7589bc5ef0ca53eb2bab3b4cd791de2a027.tar.bz2 samba-6013d7589bc5ef0ca53eb2bab3b4cd791de2a027.zip |
s3: state->ev is not needed in winbindd_lookupsid
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Mon Mar 7 20:52:53 CET 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_lookupsid.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_lookupsid.c b/source3/winbindd/winbindd_lookupsid.c index f38dc71c3a..6c76afb0b0 100644 --- a/source3/winbindd/winbindd_lookupsid.c +++ b/source3/winbindd/winbindd_lookupsid.c @@ -22,7 +22,6 @@ #include "../libcli/security/security.h" struct winbindd_lookupsid_state { - struct tevent_context *ev; struct dom_sid sid; enum lsa_SidType type; const char *domname; @@ -44,7 +43,6 @@ struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx, if (req == NULL) { return NULL; } - state->ev = ev; /* Ensure null termination */ request->data.sid[sizeof(request->data.sid)-1]='\0'; |