From 0387564f38698c5301b76b24eda000c448174171 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 31 Oct 2011 16:17:08 -0400 Subject: SYSDB: add index for nameAlias --- src/db/sysdb.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/db/sysdb.c') diff --git a/src/db/sysdb.c b/src/db/sysdb.c index 54a4257c..c49399f7 100644 --- a/src/db/sysdb.c +++ b/src/db/sysdb.c @@ -921,6 +921,13 @@ int sysdb_domain_init_internal(TALLOC_CTX *mem_ctx, } } + if (strcmp(version, SYSDB_VERSION_0_7) == 0) { + ret = sysdb_upgrade_07(sysdb, &version); + if (ret != EOK) { + goto done; + } + } + /* The version should now match SYSDB_VERSION. * If not, it means we didn't match any of the * known older versions. The DB might be -- cgit