Fix mkdir() problem for BSDI, thanks to <driehuis@playbeing.org> for this patch

This commit is contained in:
mcafee%netscape.com 1998-09-24 09:43:55 +00:00
Родитель 289f7369d4
Коммит aae6b91f46
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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);