s3:param: remove unused functions lp_idmap_uid() and lp_idmap_gid()
authorMichael Adam <obnox@samba.org>
Mon, 28 Jan 2013 13:21:44 +0000 (14:21 +0100)
committerMichael Adam <obnox@samba.org>
Tue, 5 Feb 2013 16:36:33 +0000 (17:36 +0100)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Christian Ambach <ambi@samba.org>
source3/include/proto.h
source3/param/loadparm.c

index 109827181f58937cac8688fa827d2e07d311fdad..09e46cab928a68abfadf7cdaae8a9966a854ecd4 100644 (file)
@@ -1394,8 +1394,6 @@ bool process_registry_shares(void);
 bool lp_config_backend_is_registry(void);
 bool lp_config_backend_is_file(void);
 bool lp_file_list_changed(void);
-bool lp_idmap_uid(uid_t *low, uid_t *high);
-bool lp_idmap_gid(gid_t *low, gid_t *high);
 const char *lp_ldap_machine_suffix(TALLOC_CTX *ctx);
 const char *lp_ldap_user_suffix(TALLOC_CTX *ctx);
 const char *lp_ldap_group_suffix(TALLOC_CTX *ctx);
index adadeec0aa8c61e054ed39c27f5ef8ee9f3914fe..ce40197748afb1e4bed27549eb1efb6b5104c60b 100644 (file)
@@ -2884,53 +2884,6 @@ static bool handle_ldap_debug_level(struct loadparm_context *unused, int snum, c
        return true;
 }
 
-/***************************************************************************
- Handle idmap/non unix account uid and gid allocation parameters.  The format of these
- parameters is:
-
- [global]
-
-        idmap uid = 1000-1999
-        idmap gid = 700-899
-
- We only do simple parsing checks here.  The strings are parsed into useful
- structures in the idmap daemon code.
-
-***************************************************************************/
-
-/* Some lp_ routines to return idmap [ug]id information */
-
-static uid_t idmap_uid_low, idmap_uid_high;
-static gid_t idmap_gid_low, idmap_gid_high;
-
-bool lp_idmap_uid(uid_t *low, uid_t *high)
-{
-        if (idmap_uid_low == 0 || idmap_uid_high == 0)
-                return false;
-
-        if (low)
-                *low = idmap_uid_low;
-
-        if (high)
-                *high = idmap_uid_high;
-
-        return true;
-}
-
-bool lp_idmap_gid(gid_t *low, gid_t *high)
-{
-        if (idmap_gid_low == 0 || idmap_gid_high == 0)
-                return false;
-
-        if (low)
-                *low = idmap_gid_low;
-
-        if (high)
-                *high = idmap_gid_high;
-
-        return true;
-}
-
 static bool handle_idmap_backend(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
 {
        lp_do_parameter(snum, "idmap config * : backend", pszParmValue);