mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
common: Accept the Z-suffix for yymmddThhmmssZ format.
* common/gettime.c (isotime_p): Accept the Z suffix. -- The intention is use for human interface. GnuPG-bug-id: 3278 Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
eeb3da6eb7
commit
ba8afc4966
@ -222,6 +222,8 @@ isotime_p (const char *string)
|
||||
for (s++, i=9; i < 15; i++, s++)
|
||||
if (!digitp (s))
|
||||
return 0;
|
||||
if (*s == 'Z')
|
||||
s++;
|
||||
if ( !(!*s || (isascii (*s) && isspace(*s)) || *s == ':' || *s == ','))
|
||||
return 0; /* Wrong delimiter. */
|
||||
|
||||
@ -354,9 +356,10 @@ string2isotime (gnupg_isotime_t atime, const char *string)
|
||||
}
|
||||
|
||||
|
||||
/* Scan an ISO timestamp and return an Epoch based timestamp. The only
|
||||
supported format is "yyyymmddThhmmss" delimited by white space, nul, a
|
||||
colon or a comma. Returns (time_t)(-1) for an invalid string. */
|
||||
/* Scan an ISO timestamp and return an Epoch based timestamp. The
|
||||
only supported format is "yyyymmddThhmmss[Z]" delimited by white
|
||||
space, nul, a colon or a comma. Returns (time_t)(-1) for an
|
||||
invalid string. */
|
||||
time_t
|
||||
isotime2epoch (const char *string)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user