summaryrefslogtreecommitdiff
path: root/nsswitch/wbinfo.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-01-26 22:00:22 +0100
committerMichael Adam <obnox@samba.org>2011-01-27 21:43:49 +0100
commit48ad64aa78568c4ce743345448c9d39305752d73 (patch)
tree15dab8a25bc7c09babec59743b11c707c2029ab8 /nsswitch/wbinfo.c
parent36e2baa8da3de559ce0f6c927f6262a8e4648a97 (diff)
downloadsamba-48ad64aa78568c4ce743345448c9d39305752d73.tar.gz
samba-48ad64aa78568c4ce743345448c9d39305752d73.tar.bz2
samba-48ad64aa78568c4ce743345448c9d39305752d73.zip
wbinfo: remove --remove-gid-mapping - winbindd does not implement that any more.
Diffstat (limited to 'nsswitch/wbinfo.c')
-rw-r--r--nsswitch/wbinfo.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/nsswitch/wbinfo.c b/nsswitch/wbinfo.c
index 9afc166689..a4b2a3c998 100644
--- a/nsswitch/wbinfo.c
+++ b/nsswitch/wbinfo.c
@@ -1040,35 +1040,6 @@ static bool wbinfo_allocate_gid(void)
return true;
}
-static bool wbinfo_remove_gid_mapping(gid_t gid, const char *sid_str)
-{
- wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
- struct wbcDomainSid sid;
-
- /* Send request */
-
- wbc_status = wbcStringToSid(sid_str, &sid);
- if (!WBC_ERROR_IS_OK(wbc_status)) {
- d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
- wbcErrorString(wbc_status));
- return false;
- }
-
- wbc_status = wbcRemoveGidMapping(gid, &sid);
- if (!WBC_ERROR_IS_OK(wbc_status)) {
- d_fprintf(stderr, "failed to call wbcRemoveGidMapping: %s\n",
- wbcErrorString(wbc_status));
- return false;
- }
-
- /* Display response */
-
- d_printf("Removed gid %u to sid %s mapping\n",
- (unsigned int)gid, sid_str);
-
- return true;
-}
-
/* Convert sid to string */
static bool wbinfo_lookupsid(const char *sid_str)
@@ -1865,7 +1836,6 @@ enum {
OPT_USERSIDS,
OPT_ALLOCATE_UID,
OPT_ALLOCATE_GID,
- OPT_REMOVE_GID_MAPPING,
OPT_SEPARATOR,
OPT_LIST_ALL_DOMAINS,
OPT_LIST_OWN_DOMAIN,
@@ -1926,7 +1896,6 @@ int main(int argc, char **argv, char **envp)
"Get a new UID out of idmap" },
{ "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
"Get a new GID out of idmap" },
- { "remove-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_GID_MAPPING, "Remove gid to sid mapping in idmap", "GID,SID" },
{ "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
{ "change-secret", 'c', POPT_ARG_NONE, 0, 'c', "Change shared secret" },
{ "ping-dc", 'P', POPT_ARG_NONE, 0, 'P',
@@ -2126,17 +2095,6 @@ int main(int argc, char **argv, char **envp)
goto done;
}
break;
- case OPT_REMOVE_GID_MAPPING:
- if (!parse_mapping_arg(string_arg, &int_subarg,
- &string_subarg) ||
- !wbinfo_remove_gid_mapping(int_subarg,
- string_subarg))
- {
- d_fprintf(stderr, "Could not remove gid to sid "
- "mapping\n");
- goto done;
- }
- break;
case 't':
if (!wbinfo_check_secret(opt_domain_name)) {
d_fprintf(stderr, "Could not check secret\n");