1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r18941: Minor cleanup in ads_parse_gpo().

Guenther
(This used to be commit 7579a91f81)
This commit is contained in:
Günther Deschner 2006-09-27 04:37:34 +00:00 committed by Gerald (Jerry) Carter
parent d89a951517
commit 296b450f16

View File

@ -392,8 +392,8 @@ ADS_STATUS ads_delete_gpo_link(ADS_STRUCT *ads,
}
/* split here for convenience */
gpo->version_user = gpo->version >> 16;
gpo->version_machine = gpo->version & 0xffff;
gpo->version_user = GPO_VERSION_USER(gpo->version);
gpo->version_machine = GPO_VERSION_MACHINE(gpo->version);
/* sure ??? */
if (!ads_pull_uint32(ads, res, "flags", &gpo->options)) {