CVSROOT: /cvs Module name: src Changes by: [email protected] 2014/08/02 03:46:51
Modified files:
usr.sbin/httpd : server_file.c
Log message:
scandir(3)-based directory auto index didn't work on NFS because the
file system is not filling in d_type properly. Using st_mode from the
stat call fixes the problem, eg. S_ISDIR(st.st_mode) instead of
dp->d_type == DT_DIR. Pointed out by pelikan@
