From c4427f06466ad1b5cdc5215704852a559d5a439d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 10 Jun 2011 00:36:17 +0200 Subject: Revert "s3:idmap_autorid: fail initialization if the domain is not "*"" This reverts commit cd8dc47bf17d2cdb1558dc6ab49320ba12af8f34. This sequence of patches needs to be done differently. --- source3/winbindd/idmap_autorid.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'source3') 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; -- cgit