diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2006-05-25 03:20:33 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2006-05-25 03:20:33 +0000 |
commit | ec83f0570d5b0f4a321c1b1bd3b21203db4814a5 (patch) | |
tree | 17e0bcf14bc6c42e6877dc4c70b14d15a97812e1 /usr.bin/sdiff/common.h | |
parent | 37ddf993bccdca7708a33a82f4c3e1209431461d (diff) |
Remove xmktemp() and uses plain old mkstemp(3), avoiding race
conditions.
OK moritz@, otto@
Diffstat (limited to 'usr.bin/sdiff/common.h')
-rw-r--r-- | usr.bin/sdiff/common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/sdiff/common.h b/usr.bin/sdiff/common.h index c75aef2700b..330ecf83e73 100644 --- a/usr.bin/sdiff/common.h +++ b/usr.bin/sdiff/common.h @@ -1,4 +1,4 @@ -/* $OpenBSD: common.h,v 1.1 2006/02/20 08:38:18 otto Exp $ */ +/* $OpenBSD: common.h,v 1.2 2006/05/25 03:20:32 ray Exp $ */ /* * Written by Raymond Lai <ray@cyth.net>. @@ -6,4 +6,3 @@ */ __dead void cleanup(const char *); -char *xmktemp(const char *); |