mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-21 14:47:03 +01:00
* signal.c (got_fatal_signal): HAVE_DECL_SYS_SIGLIST is defined, but zero
if not found. Noted by John Clizbe. * keyserver.c (parse_keyrec): Fix problem with non-expiring keys appearing expired in --search-keys results.
This commit is contained in:
parent
a2599936c9
commit
793f8d8d55
@ -1,3 +1,11 @@
|
||||
2004-09-28 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* signal.c (got_fatal_signal): HAVE_DECL_SYS_SIGLIST is defined,
|
||||
but zero if not found. Noted by John Clizbe.
|
||||
|
||||
* keyserver.c (parse_keyrec): Fix problem with non-expiring keys
|
||||
appearing expired in --search-keys results.
|
||||
|
||||
2004-09-27 Werner Koch <wk@g10code.com>
|
||||
|
||||
* card-util.c (card_edit): Take admin only status from the table.
|
||||
|
@ -95,7 +95,7 @@ parse_keyserver_options(char *options)
|
||||
#ifdef EXEC_TEMPFILE_ONLY
|
||||
else if(ascii_strncasecmp(tok,"use-temp-files",14)==0 ||
|
||||
ascii_strncasecmp(tok,"no-use-temp-files",17)==0)
|
||||
log_info(_("WARNING: keyserver option %s is not used"
|
||||
log_info(_("WARNING: keyserver option `%s' is not used"
|
||||
" on this platform\n"),tok);
|
||||
#else
|
||||
else if(ascii_strncasecmp(tok,"use-temp-files",14)==0)
|
||||
@ -462,7 +462,7 @@ parse_keyrec(char *keystring)
|
||||
if((tok=strsep(&keystring,":"))==NULL)
|
||||
return ret;
|
||||
|
||||
if(atoi(tok)<0)
|
||||
if(atoi(tok)<=0)
|
||||
work->createtime=0;
|
||||
else
|
||||
work->createtime=atoi(tok);
|
||||
@ -470,7 +470,7 @@ parse_keyrec(char *keystring)
|
||||
if((tok=strsep(&keystring,":"))==NULL)
|
||||
return ret;
|
||||
|
||||
if(atoi(tok)<0)
|
||||
if(atoi(tok)<=0)
|
||||
work->expiretime=0;
|
||||
else
|
||||
{
|
||||
|
@ -93,7 +93,7 @@ got_fatal_signal( int sig )
|
||||
s = log_get_name(); if( s ) write(2, s, strlen(s) );
|
||||
write(2, ": ", 2 );
|
||||
|
||||
#if defined(HAVE_DECL_SYS_SIGLIST) && defined(NSIG)
|
||||
#if HAVE_DECL_SYS_SIGLIST && defined(NSIG)
|
||||
s = (sig >= 0 && sig < NSIG) ? sys_siglist[sig] : "?";
|
||||
write (2, s, strlen(s) );
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user