diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 19:06:15 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 19:06:15 -0400 |
commit | 01012ce201590e939a82fcc2aeda88fc6a34ad57 (patch) | |
tree | d59f5fd052fa68f13a80d71dbf84b9e7156926b3 /src | |
parent | 117605f3a266c41593cade3f6344d108a772096d (diff) |
use msmktempfile instead of raw mktemp -- should be more portable
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere b/src/monkeysphere index 454da01..8e6e81a 100755 --- a/src/monkeysphere +++ b/src/monkeysphere @@ -68,7 +68,7 @@ gpg_user() { # output the ssh fingerprint of a gpg key gpg_ssh_fingerprint() { keyid="$1" - local tmpfile=$(mktemp) + local tmpfile=$(msmktempfile) # trap to remove tmp file if break trap "rm -f $tmpfile" EXIT |