diff options
author | Werner Koch <wk@gnupg.org> | 2009-03-16 10:44:44 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2009-03-16 10:44:44 +0100 |
commit | 94be7a43417f0a9b48b2e220a308e65d71b8c342 (patch) | |
tree | 57bd8ef5cb8a6ff5b103b7e27f20068275d6d561 /common/gettime.c | |
parent | * gpg.c (my_strusage): gpg2 and gpgv2 (not gpg and gpgv). (diff) | |
download | gnupg2-94be7a43417f0a9b48b2e220a308e65d71b8c342.tar.xz gnupg2-94be7a43417f0a9b48b2e220a308e65d71b8c342.zip |
Remove duplicated code.
Diffstat (limited to 'common/gettime.c')
-rw-r--r-- | common/gettime.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/gettime.c b/common/gettime.c index c4a9d4844..1b4e435a1 100644 --- a/common/gettime.c +++ b/common/gettime.c @@ -26,6 +26,7 @@ #endif #include "util.h" +#include "i18n.h" static unsigned long timewarp; static enum { NORMAL = 0, FROZEN, FUTURE, PAST } timemode; @@ -495,6 +496,16 @@ check_isotime (const gnupg_isotime_t atime) } +void +dump_isotime (const gnupg_isotime_t t) +{ + if (!t || !*t) + log_printf (_("[none]")); + else + log_printf ("%.4s-%.2s-%.2s %.2s:%.2s:%s", + t, t+4, t+6, t+9, t+11, t+13); +} + /* Add SECONDS to ATIME. SECONDS may not be negative and is limited to about the equivalent of 62 years which should be more then |