From 296b450f16dd45e01d4c495ca085c16e1894adc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Wed, 27 Sep 2006 04:37:34 +0000 Subject: [PATCH] r18941: Minor cleanup in ads_parse_gpo(). Guenther (This used to be commit 7579a91f81a43f570987fecca03c19f559887685) --- source3/libads/gpo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/libads/gpo.c b/source3/libads/gpo.c index 15ff54854cd..4a121e9f6a3 100644 --- a/source3/libads/gpo.c +++ b/source3/libads/gpo.c @@ -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)) {