diff options
author | Jim McDonough <jmcd@samba.org> | 2002-10-30 20:31:02 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-10-30 20:31:02 +0000 |
commit | 3b3c7914e2cd79ee5c6e76af14e386a590aed78e (patch) | |
tree | e93291463c3c41fb94f92efec67f2255d5cad701 | |
parent | 279413b82068b0f257589aeeb090ed0f0ca37395 (diff) | |
download | samba-3b3c7914e2cd79ee5c6e76af14e386a590aed78e.tar.gz samba-3b3c7914e2cd79ee5c6e76af14e386a590aed78e.tar.xz samba-3b3c7914e2cd79ee5c6e76af14e386a590aed78e.zip |
Take out gcb2gtype and gtype2gcb fns. They were using symbols not defined
in 3.0 (new SAM in HEAD). Nobody was referencing these fns...
(This used to be commit 386cc92dfa23b4e20172dff20fb14c2ad3172a58)
-rw-r--r-- | source3/libads/ads_utils.c | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/source3/libads/ads_utils.c b/source3/libads/ads_utils.c index 626c177926..750940e336 100644 --- a/source3/libads/ads_utils.c +++ b/source3/libads/ads_utils.c @@ -89,52 +89,6 @@ uint32 ads_uf2atype(uint32 uf) } /* -translated the GROUP_CTRL Flags to GroupType (groupType) -*/ -uint32 ads_gcb2gtype(uint16 gcb) -{ - uint32 gtype = 0x00000000; - - if (gcb & GCB_ALIAS_GROUP) gtype |= GTYPE_SECURITY_BUILTIN_LOCAL_GROUP; - else if(gcb & GCB_LOCAL_GROUP) gtype |= GTYPE_SECURITY_DOMAIN_LOCAL_GROUP; - if (gcb & GCB_GLOBAL_GROUP) gtype |= GTYPE_SECURITY_GLOBAL_GROUP; - - return gtype; -} - -/* -translated the GroupType (groupType) to GROUP_CTRL Flags -*/ -uint16 ads_gtype2gcb(uint32 gtype) -{ - uint16 gcb = 0x0000; - - switch(gtype) { - case GTYPE_SECURITY_BUILTIN_LOCAL_GROUP: - gcb = GCB_ALIAS_GROUP; - break; - case GTYPE_SECURITY_DOMAIN_LOCAL_GROUP: - gcb = GCB_LOCAL_GROUP; - break; - case GTYPE_SECURITY_GLOBAL_GROUP: - gcb = GCB_GLOBAL_GROUP; - break; - - case GTYPE_DISTRIBUTION_GLOBAL_GROUP: - gcb = GCB_GLOBAL_GROUP; - break; - case GTYPE_DISTRIBUTION_DOMAIN_LOCAL_GROUP: - gcb = GCB_LOCAL_GROUP; - break; - case GTYPE_DISTRIBUTION_UNIVERSAL_GROUP: - gcb = GCB_GLOBAL_GROUP; - break; - } - - return gcb; -} - -/* get the accountType from the groupType */ uint32 ads_gtype2atype(uint32 gtype) |