summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-12-16 10:29:05 -0500
committerStephen Gallagher <sgallagh@redhat.com>2009-12-17 16:37:47 -0500
commitf241390220928fbf2e7758f49ebbe29e9ef02ec1 (patch)
tree0eb1fef767d5fce73c2de06f50092ddfc6aa9572
parent5a8beab6f23ee56a34cfa1670ae36518994de22d (diff)
downloadsssd-f241390220928fbf2e7758f49ebbe29e9ef02ec1.tar.gz
sssd-f241390220928fbf2e7758f49ebbe29e9ef02ec1.tar.xz
sssd-f241390220928fbf2e7758f49ebbe29e9ef02ec1.zip
Change default for enumeration to TRUE
-rw-r--r--server/confdb/confdb.c2
-rw-r--r--server/man/sssd.conf.5.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/confdb/confdb.c b/server/confdb/confdb.c
index 6ba57a56c..6981baa55 100644
--- a/server/confdb/confdb.c
+++ b/server/confdb/confdb.c
@@ -761,7 +761,7 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb,
domain->enumerate = true;
} else { /* assume the new format */
ret = get_entry_as_bool(res->msgs[0], &domain->enumerate,
- CONFDB_DOMAIN_ENUMERATE, 0);
+ CONFDB_DOMAIN_ENUMERATE, 1);
if(ret != EOK) {
DEBUG(0, ("Invalid value for %s\n", CONFDB_DOMAIN_ENUMERATE));
goto done;
diff --git a/server/man/sssd.conf.5.xml b/server/man/sssd.conf.5.xml
index cb378c845..6356a01fd 100644
--- a/server/man/sssd.conf.5.xml
+++ b/server/man/sssd.conf.5.xml
@@ -386,7 +386,7 @@
FALSE = No enumerations for this domain
</para>
<para>
- Default: FALSE
+ Default: TRUE
</para>
</listitem>
</varlistentry>