diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgkey2ssh.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 82fe5c74d..06398c10f 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,7 @@ +2007-08-21 Werner Koch <[email protected]> + + * gpgkey2ssh.c (key_to_blob): Use gnupg_tmpfile(). + 2007-08-02 Werner Koch <[email protected]> * gpgconf-comp.c: Factor the public GC_OPT_FLAG constants out and diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c index a68fdf059..c7156f9fa 100644 --- a/tools/gpgkey2ssh.c +++ b/tools/gpgkey2ssh.c @@ -184,7 +184,7 @@ key_to_blob (unsigned char **blob, size_t *blob_n, const char *identifier, ...) int ret; pkdbuf_t *pkd; - stream = tmpfile (); + stream = gnupg_tmpfile (); assert (stream); identifier_n = strlen (identifier); |