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 | 0fc219c424d897e5d3a4dffc67a025ac13250a0c (patch) | |
tree | e81aef8ba126731e11f776762eed8ca22fe2fbdd /infest/bin | |
parent | 7b24979bf77a319a827bb3f92298002b2942c315 (diff) |
mv tempfile mktemp
Diffstat (limited to 'infest/bin')
-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 |