Oops - should have been a backslash here - thanks pkw@us.ibm.com

This commit is contained in:
mkaply%us.ibm.com 2002-09-19 21:17:21 +00:00
Родитель 37d08f059f
Коммит d9c5e77922
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -419,7 +419,7 @@ main(int argc, char **argv)
/* The stat() function in OS/2 Visual Age C++ doesn't like a path with
a trailing backslash. */
if (todir[strlen(todir)-1] == '/')
todir[strlen(todir)-1] = '/0';
todir[strlen(todir)-1] = '\0';
#endif
if ((stat(todir, &sb) < 0 || !S_ISDIR(sb.st_mode)) &&
mkdirs(todir, 0777) < 0) {