summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2009-12-09 13:45:43 +0100
committerStephen Gallagher <sgallagh@redhat.com>2009-12-10 17:44:17 -0500
commit1226695fc635b764ec0b73c78b8899ce862185f1 (patch)
tree6b210d4b39b1e99b3aff611fd53a6f4c2375b6da /server
parent8d6964aa2c0f2bf6ecfeeb69f2481a189805d77e (diff)
downloadsssd-1226695fc635b764ec0b73c78b8899ce862185f1.tar.gz
sssd-1226695fc635b764ec0b73c78b8899ce862185f1.tar.xz
sssd-1226695fc635b764ec0b73c78b8899ce862185f1.zip
Fix DEBUG message for sysdb_init
Diffstat (limited to 'server')
-rw-r--r--server/db/sysdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/db/sysdb.c b/server/db/sysdb.c
index f22cea3b2..c07a07440 100644
--- a/server/db/sysdb.c
+++ b/server/db/sysdb.c
@@ -1774,7 +1774,7 @@ int sysdb_init(TALLOC_CTX *mem_ctx,
ret = sysdb_upgrade_02(cdb, ev, ctx, ctx_list);
if (ret != EOK) {
- DEBUG(0, ("FATAL: Upgrade form db version %s failed!\n",
+ DEBUG(0, ("FATAL: Upgrade from db version %s failed!\n",
SYSDB_VERSION_0_2));
DEBUG(0, ("You may find a backup of the database here: %s\n",
DB_PATH));
@@ -1783,7 +1783,7 @@ int sysdb_init(TALLOC_CTX *mem_ctx,
}
ret = sysdb_upgrade_03(ctx, &version);
if (ret != EOK) {
- DEBUG(0, ("FATAL: Upgrade form db version %d failed!\n",
+ DEBUG(0, ("FATAL: Upgrade from db version %s failed!\n",
SYSDB_VERSION_0_3));
talloc_zfree(ctx_list);
return ret;