1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s3-winbind: Fixed setting default sequence number.

This commit is contained in:
Andreas Schneider 2010-06-09 16:15:28 +02:00
parent 6a6bb768c6
commit 95047bc717

View File

@ -294,7 +294,7 @@ static NTSTATUS sequence_number(struct winbindd_domain *domain, uint32 *seq)
result = pdb_get_seq_num(&seq_num);
if (!result) {
*seq = 1;
seq_num = 1;
}
*seq = (int) seq_num;