1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

r25242: remove sequence_number out of WINBINDD_DOMAIN_INFO call

as this is always answered by the winbindd parent and will
most times return old sequence number values.

metze
(This used to be commit af259f35f22ea24c1b2f2e007998bfa0bb58f6f6)
This commit is contained in:
Stefan Metzmacher 2007-09-19 19:09:02 +00:00 committed by Gerald (Jerry) Carter
parent 727386327c
commit e0ea2c9b9f
2 changed files with 1 additions and 3 deletions

View File

@ -465,8 +465,6 @@ static BOOL wbinfo_domain_info(const char *domain_name)
d_printf("Primary : %s\n",
response.data.domain_info.primary ? "Yes" : "No");
d_printf("Sequence : %d\n", response.data.domain_info.sequence_number);
return True;
}

View File

@ -447,8 +447,8 @@ struct winbindd_response {
bool native_mode;
bool active_directory;
bool primary;
uint32_t sequence_number;
} domain_info;
uint32_t sequence_number;
struct {
fstring acct_name;
fstring full_name;