Small fix for path separators.

This commit is contained in:
rjc%netscape.com 1999-02-18 01:43:22 +00:00
Родитель 8874310149
Коммит 429e50b781
2 изменённых файлов: 10 добавлений и 2 удалений

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

@ -1094,7 +1094,11 @@ nsresult nsRepository::SyncComponentsInDir(const char *dir)
unsigned int n = strlen(fullname);
if (n+1 < sizeof(fullname))
{
fullname[n] = '/'; // PR_GetDirectorySeparator();
#ifdef XP_WIN
fullname[n] = PR_GetDirectorySeparator();
#else
fullname[n] = '/';
#endif
n++;
}
char *filepart = fullname + n;

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

@ -1094,7 +1094,11 @@ nsresult nsRepository::SyncComponentsInDir(const char *dir)
unsigned int n = strlen(fullname);
if (n+1 < sizeof(fullname))
{
fullname[n] = '/'; // PR_GetDirectorySeparator();
#ifdef XP_WIN
fullname[n] = PR_GetDirectorySeparator();
#else
fullname[n] = '/';
#endif
n++;
}
char *filepart = fullname + n;