Add HAVE_FCHMOD to the list of ifdefs when checking whether or not to use fchmod. duh.

This commit is contained in:
seawood%netscape.com 2001-10-16 10:37:33 +00:00
Родитель a5d3e32892
Коммит 7f37118a2a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -637,7 +637,7 @@ redirect(line, makefile)
}
}
fflush(fdout);
#if defined(USGISH) || defined(_SEQUENT_) || defined(USE_CHMOD)
#if defined(USGISH) || defined(_SEQUENT_) || defined(USE_CHMOD) || !defined(HAVE_FCHMOD)
chmod(makefile, st.st_mode);
#else
fchmod(fileno(fdout), st.st_mode);