Changeset 194
- Timestamp:
- 03/19/2005 02:52:12 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
configure.in (modified) (1 diff)
-
src/mod_dirlisting.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.in
r191 r194 309 309 strdup strerror strstr strtol sendfile getopt socket \ 310 310 gethostbyname poll sigtimedwait epoll_ctl getrlimit chroot \ 311 getuid select signal \311 getuid select signal pathconf \ 312 312 writev sigaction sendfile64 send_file kqueue port_create localtime_r]) 313 313 -
trunk/src/mod_dirlisting.c
r192 r194 5 5 #include <assert.h> 6 6 #include <errno.h> 7 #include <stdio.h> 8 #include <unistd.h> 7 9 8 10 #include "base.h" … … 379 381 380 382 #ifdef HAVE_PATHCONF 381 name_max = pathconf(dir->ptr, PC_NAME_MAX);383 name_max = pathconf(dir->ptr, _PC_NAME_MAX); 382 384 #else 383 385 name_max = NAME_MAX;

