diff options
author | Werner Koch <wk@gnupg.org> | 2019-07-18 13:59:52 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2019-07-18 13:59:52 +0200 |
commit | 824ca6f042dc69edaf67bf9d4e875be75babab00 (patch) | |
tree | f77a4d9963b28a9ef3eb8cd786205d09bb165d9f /kbx/keybox-update.c | |
parent | gpg: More check for symmetric key encryption. (diff) | |
download | gnupg2-824ca6f042dc69edaf67bf9d4e875be75babab00.tar.xz gnupg2-824ca6f042dc69edaf67bf9d4e875be75babab00.zip |
kbx: Allow "gpgsm --faked-system-time" to kick off a compression run.
* kbx/keybox-update.c (keybox_compress): Use make_timestamp.
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'kbx/keybox-update.c')
-rw-r--r-- | kbx/keybox-update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kbx/keybox-update.c b/kbx/keybox-update.c index e09fefc41..66430c848 100644 --- a/kbx/keybox-update.c +++ b/kbx/keybox-update.c @@ -675,7 +675,7 @@ keybox_compress (KEYBOX_HANDLE hd) { u32 last_maint = buf32_to_u32 (buffer+20); - if ( (last_maint + 3*3600) > time (NULL) ) + if ( (last_maint + 3*3600) < make_timestamp () ) { fclose (fp); _keybox_release_blob (blob); |