r12185: Cosmetic cleanup
authorVolker Lendecke <vlendec@samba.org>
Sun, 11 Dec 2005 21:59:58 +0000 (21:59 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:05:48 +0000 (11:05 -0500)
(This used to be commit d1e8f9afffecf986a428bfac29b22dcbce610016)

source3/groupdb/mapping.c
source3/utils/net_groupmap.c

index 9e547aa69c634070dac26691b498b5d31c4fcf15..97a3d6ab0e94e1670b00d2ac791117d559d746b6 100644 (file)
@@ -35,36 +35,6 @@ static TDB_CONTEXT *tdb; /* used for driver files */
  */
 #define MEMBEROF_PREFIX "MEMBEROF/"
 
-static struct sid_name_mapping {
-       enum SID_NAME_USE type;
-       const char *name;
-} sid_name_use_strings[] = {
-       { SID_NAME_USE_NONE, "Not initialized" },
-       { SID_NAME_USER,     "User" },
-       { SID_NAME_DOM_GRP,  "Domain group" },
-       { SID_NAME_DOMAIN,   "Domain" },
-       { SID_NAME_ALIAS,    "Local group" },
-       { SID_NAME_WKN_GRP,  "Builtin group" },
-       { SID_NAME_DELETED,  "Deleted" },
-       { SID_NAME_INVALID,  "Invalid" },
-       { 0, NULL }
-};
-
-/****************************************************************************
-dump the mapping group mapping to a text file
-****************************************************************************/
-const char *decode_sid_name_use(enum SID_NAME_USE name_use)
-{
-       struct sid_name_mapping *m;
-
-       for (m = sid_name_use_strings; m->name != NULL; m++) {
-               if (m->type == name_use)
-                       return m->name;
-       }
-
-       return "Unknown type";
-}
-
 /****************************************************************************
 initialise first time the mapping list - called from init_group_mapping()
 ****************************************************************************/
@@ -445,8 +415,9 @@ static BOOL enum_group_mapping(enum SID_NAME_USE sid_name_use, GROUP_MAP **pp_rm
 
                string_to_sid(&map.sid, string_sid);
                
-               DEBUG(11,("enum_group_mapping: returning group %s of type %s\n",
-                         map.nt_name, decode_sid_name_use(map.sid_name_use)));
+               DEBUG(11,("enum_group_mapping: returning group %s of "
+                         "type %s\n", map.nt_name,
+                         sid_type_lookup(map.sid_name_use)));
 
                mapt= SMB_REALLOC_ARRAY((*pp_rmap), GROUP_MAP, entries+1);
                if (!mapt) {
index f12668a85a4fed11aa80e5c38d3fddac3993b165..89bad6ea519e0032d961d14c3e55232fa9695900 100644 (file)
@@ -95,7 +95,7 @@ static void print_map_entry ( GROUP_MAP map, BOOL long_list )
                d_printf("\tSID       : %s\n", sid_string_static(&map.sid));
                d_printf("\tUnix group: %s\n", gidtoname(map.gid));
                d_printf("\tGroup type: %s\n",
-                        decode_sid_name_use(map.sid_name_use));
+                        sid_type_lookup(map.sid_name_use));
                d_printf("\tComment   : %s\n", map.comment);
        }