summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2002-05-16 05:32:30 +0000
committerwtc%netscape.com <devnull@localhost>2002-05-16 05:32:30 +0000
commit4ec5cb79e57029efc7110276323dcc3216325d82 (patch)
treebe47aad9259135bf5c24049d467509ed6ae6cb2a
parent3b3d96a7c948664fd199ddcfed4f0eaa6730932c (diff)
downloadnss-hg-4ec5cb79e57029efc7110276323dcc3216325d82.tar.gz
Fixed build breakage on BeOS -- made the ifdef match the one in sslsnce.c.
-rw-r--r--security/nss/lib/ssl/sslmutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/ssl/sslmutex.c b/security/nss/lib/ssl/sslmutex.c
index 4ca7c3caf..1309f14d7 100644
--- a/security/nss/lib/ssl/sslmutex.c
+++ b/security/nss/lib/ssl/sslmutex.c
@@ -35,7 +35,7 @@
#include "seccomon.h"
/* This ifdef should match the one in sslsnce.c */
-#if (defined(XP_UNIX) || defined(XP_WIN32) || defined (XP_OS2)) && !defined(_WIN32_WCE)
+#if (defined(XP_UNIX) || defined(XP_WIN32) || defined (XP_OS2) || defined(XP_BEOS)) && !defined(_WIN32_WCE)
#include "sslmutex.h"
#include "prerr.h"