Bug 127785 - checked in cseawood's patch

This commit is contained in:
bishakhabanerjee%netscape.com 2002-02-27 21:49:41 +00:00
Родитель 33c5ddd832
Коммит b2b65695fd
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -30,7 +30,7 @@
* may use your version of this file under either the MPL or the
* GPL.
*
* $Id: sslmutex.c,v 1.8 2002-02-22 04:23:24 wtc%netscape.com Exp $
* $Id: sslmutex.c,v 1.9 2002-02-27 21:48:53 bishakhabanerjee%netscape.com Exp $
*/
#include "sslmutex.h"
@ -83,7 +83,7 @@ static SECStatus single_process_sslMutex_Lock(sslMutex* pMutex)
return SECSuccess;
}
#if defined(LINUX) || defined(AIX) || defined(VMS) || defined(BEOS)
#if defined(LINUX) || defined(AIX) || defined(VMS) || defined(BEOS) || defined(BSDI)
#include <unistd.h>
#include <fcntl.h>

Просмотреть файл

@ -30,7 +30,7 @@
* may use your version of this file under either the MPL or the
* GPL.
*
* $Id: sslmutex.h,v 1.5 2002-02-22 04:23:24 wtc%netscape.com Exp $
* $Id: sslmutex.h,v 1.6 2002-02-27 21:49:41 bishakhabanerjee%netscape.com Exp $
*/
#ifndef __SSLMUTEX_H_
#define __SSLMUTEX_H_ 1
@ -77,7 +77,7 @@ typedef struct
typedef int sslPID;
#elif defined(LINUX) || defined(AIX) || defined(VMS) || defined(BEOS)
#elif defined(LINUX) || defined(AIX) || defined(VMS) || defined(BEOS) || defined(BSDI)
#include <sys/types.h>
#include "prtypes.h"