Mailing List Archive

Re: [Announce] GnuPG 1.9.17 (S/MIME and gpg-agent) released
There's a small typo in agent/command-ssh.c that prevents compilation on gcc
2.95. Patch attached.

Cheers,
--
,_, | Michael Nottebrock | lofi@freebsd.org
(/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org
\u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org
Re: [Announce] GnuPG 1.9.17 (S/MIME and gpg-agent) released [ In reply to ]
There's a small typo in agent/command-ssh.c that prevents compilation on gcc
2.95. Patch attached.

Cheers,
--
,_, | Michael Nottebrock | lofi@freebsd.org
(/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org
\u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org
Re: [Announce] GnuPG 1.9.17 (S/MIME and gpg-agent) released [ In reply to ]
On Wed, 29 Jun 2005 13:54:04 +0200, Michael Nottebrock said:

> gcry_mpi_t sig_value = NULL;
> - unsigned char *sig_blob = NULL;;
> + unsigned char *sig_blob = NULL;

This is indeed an error. Mixing declaration and statements (the empty
one here) is not allowed by C-89. Anyone knows whether gcc 4.0 has an
option to detect this again?

Thanks,

Werner