Argh, inverted logic bug.

This commit is contained in:
brendan%mozilla.org 2003-06-28 00:55:12 +00:00
parent 1573b494ea
commit 0542fec384
2 changed files with 2 additions and 2 deletions

View File

@ -2020,7 +2020,7 @@ env_setProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
return JS_FALSE;
}
rv = putenv(waste);
#ifndef XP_WIN
#ifdef XP_WIN
/*
* HPUX9 at least still has the bad old non-copying putenv.
*

View File

@ -382,7 +382,7 @@ env_setProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
return JS_FALSE;
}
rv = putenv(waste);
#ifndef XP_WIN
#ifdef XP_WIN
/*
* HPUX9 at least still has the bad old non-copying putenv.
*