From fdbf61376c4e1d5f95dc786a63ada15369f793da Mon Sep 17 00:00:00 2001 From: "mcafee%netscape.com" Date: Thu, 24 Sep 1998 09:43:55 +0000 Subject: [PATCH] Fix mkdir() problem for BSDI, thanks to for this patch --- lib/xp/xp_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xp/xp_file.c b/lib/xp/xp_file.c index 39e4e21f6fc..f1a569ad8a6 100644 --- a/lib/xp/xp_file.c +++ b/lib/xp/xp_file.c @@ -355,7 +355,7 @@ int XP_MakeDirectory(const char* name, XP_FileType type) if (!*s) return -1; result = mkdir (s, mode); } -#elif defined(SUNOS4) +#elif defined(SUNOS4) || defined(BSDI) { char rp[MAXPATHLEN]; char *s = WH_FileName (name, type);