mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Revamped the keyring code
This commit is contained in:
parent
3f465d5d7a
commit
ed17c7afd0
45 changed files with 2464 additions and 2764 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-09-03 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* miscutil.c (strtimestamp,asctimestamp): Avoid trigraphs.
|
||||
|
||||
2001-08-21 Stefan Bellon <sbellon@sbellon.de>
|
||||
|
||||
* riscos.c [__riscos__] (close_fds): Fixed possible endless loop.
|
||||
|
|
|
@ -126,7 +126,7 @@ strtimestamp( u32 stamp )
|
|||
time_t atime = stamp;
|
||||
|
||||
if (atime < 0) {
|
||||
strcpy (buffer, "????-??-??");
|
||||
strcpy (buffer, "????" "-??" "-??");
|
||||
}
|
||||
else {
|
||||
tp = gmtime( &atime );
|
||||
|
@ -150,7 +150,7 @@ asctimestamp( u32 stamp )
|
|||
time_t atime = stamp;
|
||||
|
||||
if (atime < 0) {
|
||||
strcpy (buffer, "????-??-??");
|
||||
strcpy (buffer, "????" "-??" "-??");
|
||||
return buffer;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue