summaryrefslogtreecommitdiff
path: root/sal/osl/unx
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2000-12-18 21:45:02 +0000
committerSander Vesik <svesik@openoffice.org>2000-12-18 21:45:02 +0000
commitb8053386dd75c9b0a4ff53b0ff9cc0fc8a4600cd (patch)
treeb598cbbd8fd5778b1d0ae3c5335e7bc2957ff83d /sal/osl/unx
parente51dda7e850f146b8202e7baed0b962752574446 (diff)
FreeBSD has same struct password differences from the rest as do
MacOSX and NetBSD. Contributed by: Tim Tretyak <timothy@umc.com.ua>
Diffstat (limited to 'sal/osl/unx')
-rw-r--r--sal/osl/unx/system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/system.c b/sal/osl/unx/system.c
index 9a34a1c3fac9..f40783d6238c 100644
--- a/sal/osl/unx/system.c
+++ b/sal/osl/unx/system.c
@@ -2,9 +2,9 @@
*
* $RCSfile: system.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:21 $
+ * last change: $Author: svesik $ $Date: 2000-12-18 22:45:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -66,7 +66,7 @@
static pthread_mutex_t getrtl_mutex = PTHREAD_MUTEX_INITIALIZER;
/* struct passwd differs on some platforms */
-#if defined NETBSD || defined MACOSX
+#if defined NETBSD || defined MACOSX || defined FREEBSD
#include <pwd.h>
#include <sys/types.h>