diff options
author | tv <tv@also> | 2011-07-22 14:15:54 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-07-22 14:15:54 +0200 |
commit | c62146fa85bfd3e8a0ef3119935a8c3e2935eb4e (patch) | |
tree | ccc77281a43ffbf4ce8874bf998f5cf7d78150bd | |
parent | 1c21514eae2bd9aafd700172e0054d63ec31ad96 (diff) |
mv tempfile mktemp
-rwxr-xr-x | infest/bin/make-patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/infest/bin/make-patch b/infest/bin/make-patch index e2ef0ca0..1051c1aa 100755 --- a/infest/bin/make-patch +++ b/infest/bin/make-patch @@ -1,7 +1,7 @@ #! /bin/sh -t="`tempfile`" -p="`tempfile`" +t="`mktemp`" +p="`mktemp`" trap "test -e $t && rm $t; test -e $p && rm $p" EXIT INT f=/etc/passwd |