summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-15 17:10:53 +0200
committerGünther Deschner <gd@samba.org>2008-10-15 17:11:27 +0200
commit65dc1eecebf664e26e87c70f9b5c8640d5535493 (patch)
treedb4fbb7ff58434291fee509e83c232d453027ebd /source3/winbindd
parent911501bb8bd1964e1507e16744d15c0213e6f310 (diff)
downloadsamba-65dc1eecebf664e26e87c70f9b5c8640d5535493.tar.gz
samba-65dc1eecebf664e26e87c70f9b5c8640d5535493.tar.bz2
samba-65dc1eecebf664e26e87c70f9b5c8640d5535493.zip
s3: fix various samr callers.
Guenther
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/winbindd_rpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_rpc.c b/source3/winbindd/winbindd_rpc.c
index 9fbea8e45b..d966e50159 100644
--- a/source3/winbindd/winbindd_rpc.c
+++ b/source3/winbindd/winbindd_rpc.c
@@ -1018,7 +1018,7 @@ static NTSTATUS sequence_number(struct winbindd_domain *domain, uint32 *seq)
&info);
if (NT_STATUS_IS_OK(result)) {
- *seq = info->info2.sequence_num;
+ *seq = info->general.sequence_num;
got_seq_num = True;
}