summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-06-10 00:36:17 +0200
committerMichael Adam <obnox@samba.org>2011-06-11 11:44:31 +0200
commitc4427f06466ad1b5cdc5215704852a559d5a439d (patch)
treed2b1b279f30020b316d0f432ee08bff0ce1fdfd4 /source3
parent241ed0a04247d5062926443a8a3a481697299e60 (diff)
downloadsamba-c4427f06466ad1b5cdc5215704852a559d5a439d.tar.gz
samba-c4427f06466ad1b5cdc5215704852a559d5a439d.tar.bz2
samba-c4427f06466ad1b5cdc5215704852a559d5a439d.zip
Revert "s3:idmap_autorid: fail initialization if the domain is not "*""
This reverts commit cd8dc47bf17d2cdb1558dc6ab49320ba12af8f34. This sequence of patches needs to be done differently.
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/idmap_autorid.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/source3/winbindd/idmap_autorid.c b/source3/winbindd/idmap_autorid.c
index 0e1750d7c4..b28382f2af 100644
--- a/source3/winbindd/idmap_autorid.c
+++ b/source3/winbindd/idmap_autorid.c
@@ -438,15 +438,7 @@ static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom)
TALLOC_CTX *frame = talloc_stackframe();
char *config_option = NULL;
- if (!strequal(dom->name, "*")) {
- DEBUG(0, ("idmap_autorid_initialize: Error: autorid configured "
- "for domain '%s'. But autorid can only be used for "
- "the default idmap configuration.\n", dom->name));
- status = NT_STATUS_INVALID_PARAMETER;
- goto error;
- }
-
- config = talloc_zero(dom, struct autorid_global_config);
+ config = talloc_zero(frame, struct autorid_global_config);
if (!config) {
DEBUG(0, ("Out of memory!\n"));
status = NT_STATUS_NO_MEMORY;