~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to common/signal.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2006-01-24 04:31:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060124043142-pbg192or6qxv3yk2
Tags: 1.9.20-1
* New Upstream version. Closes:#306890,#344530
  * Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files 
* Depend on libopensc2-dev, not -1-. Closes:#348106

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
{
77
77
  /* Note that we can't use strsignal(), because it is not
78
78
     reentrant. */
79
 
#if defined(HAVE_DECL_SYS_SIGLIST) && defined(NSIG)
 
79
#if HAVE_DECL_SYS_SIGLIST && defined(NSIG)
80
80
  return (signum >= 0 && signum < NSIG) ? sys_siglist[signum] : "?";
81
81
#else
82
82
  return NULL;