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:11 -0500
commit796dcd1db104edef2fc6a7be49ae7bf35633ce04 (patch)
tree979c1dbac7a606b2ac6287607ad9bf03d9d1cb2a /server
parent781b66f3f87d11ae320a4c4a861f2599ca6edff6 (diff)
downloadsssd-796dcd1db104edef2fc6a7be49ae7bf35633ce04.tar.gz
sssd-796dcd1db104edef2fc6a7be49ae7bf35633ce04.tar.xz
sssd-796dcd1db104edef2fc6a7be49ae7bf35633ce04.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;