diff options
author | Sumit Bose <sbose@redhat.com> | 2009-12-09 13:45:43 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-10 17:44:11 -0500 |
commit | 796dcd1db104edef2fc6a7be49ae7bf35633ce04 (patch) | |
tree | 979c1dbac7a606b2ac6287607ad9bf03d9d1cb2a | |
parent | 781b66f3f87d11ae320a4c4a861f2599ca6edff6 (diff) | |
download | sssd-796dcd1db104edef2fc6a7be49ae7bf35633ce04.tar.gz sssd-796dcd1db104edef2fc6a7be49ae7bf35633ce04.tar.bz2 sssd-796dcd1db104edef2fc6a7be49ae7bf35633ce04.zip |
Fix DEBUG message for sysdb_init
-rw-r--r-- | server/db/sysdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/db/sysdb.c b/server/db/sysdb.c index f22cea3b..c07a0744 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; |