diff options
author | Moritz Schulte <[email protected]> | 2007-09-04 05:59:07 +0000 |
---|---|---|
committer | Moritz Schulte <[email protected]> | 2007-09-04 05:59:07 +0000 |
commit | 54a447774984ff13134c5c2496118ab986b4a616 (patch) | |
tree | 3a8c74cd21ed5b4e0ce28d42fbdd4c06e7a44c87 | |
parent | Make gpgconf --list-components also print the name of the executable program. (diff) | |
download | gnupg-54a447774984ff13134c5c2496118ab986b4a616.tar.gz gnupg-54a447774984ff13134c5c2496118ab986b4a616.zip |
2007-09-04 Moritz Schulte <[email protected]>
* gpgkey2ssh.c: Include sysutils.h so that gnupg_tmpfile() is
declared.
-rw-r--r-- | tools/ChangeLog | 5 | ||||
-rw-r--r-- | tools/gpgkey2ssh.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 4a1a4ead1..41ec8c215 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,8 @@ +2007-09-04 Moritz Schulte <[email protected]> + + * gpgkey2ssh.c: Include sysutils.h so that gnupg_tmpfile() is + declared. + 2007-08-31 Werner Koch <[email protected]> * gpgconf-comp.c (gc_component_list_components): List the programs diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c index c7156f9fa..0c0985d41 100644 --- a/tools/gpgkey2ssh.c +++ b/tools/gpgkey2ssh.c @@ -27,6 +27,7 @@ #include <errno.h> #include "util.h" +#include "sysutils.h" |