summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2004-01-07 23:53:56 +0000
committerespie <espie@openbsd.org>2004-01-07 23:53:56 +0000
commit3d4065ff7b847c42bcf5dde513c9d438ea8f1a56 (patch)
tree3d56656e0974036e1fa4711ad423accd76d04082
parentRevert the pmap machinery to 20031228. The changes made since all produce (diff)
downloadwireguard-openbsd-3d4065ff7b847c42bcf5dde513c9d438ea8f1a56.tar.xz
wireguard-openbsd-3d4065ff7b847c42bcf5dde513c9d438ea8f1a56.zip
inverted test. problem reported by avsm@.
-rw-r--r--gnu/usr.bin/binutils/binutils/bucomm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/binutils/bucomm.c b/gnu/usr.bin/binutils/binutils/bucomm.c
index c9a21a5d4be..094baef427e 100644
--- a/gnu/usr.bin/binutils/binutils/bucomm.c
+++ b/gnu/usr.bin/binutils/binutils/bucomm.c
@@ -254,7 +254,7 @@ make_tempname (filename, isdir)
if (isdir)
{
#ifdef HAVE_MKDTEMP
- if (mkdtemp (tmpname) != (char *) NULL)
+ if (mkdtemp (tmpname) == (char *) NULL)
#else
mktemp (tmpname);
#if defined (_WIN32) && !defined (__CYGWIN32__)