1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-15 00:29:49 +02:00

gpg: Default to the flat TOFU DB format.

* g10/tofu.c (opendbs): If the TOFU DB format is set to auto and there
is no TOFU DB, default to the flat format.

--
Signed-off-by: Neal H. Walfield <neal@g10code.com>
This commit is contained in:
Neal H. Walfield 2015-11-10 08:03:57 +01:00
parent 288c9919dc
commit 951f277b6b

View File

@ -1014,9 +1014,9 @@ opendbs (void)
}
else
{
opt.tofu_db_format = TOFU_DB_SPLIT;
opt.tofu_db_format = TOFU_DB_FLAT;
if (DBG_TRUST)
log_debug ("Using split format for TOFU DB.\n");
log_debug ("Using flat format for TOFU DB.\n");
}
}