Changeset 1733

Show
Ignore:
Timestamp:
04/09/2007 08:27:19 PM (18 months ago)
Author:
jan
Message:

reduced default PATH_MAX to 255 (fixes #826)

Location:
branches/lighttpd-1.4.x
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.4.x/NEWS

    r1732 r1733  
    3232  * fixed handling of %% in accesslog.format 
    3333  * fixed conditional dir-listing.exclude (#930) 
     34  * reduced default PATH_MAX to 255 (#826) 
    3435 
    3536 
  • branches/lighttpd-1.4.x/src/mod_dirlisting.c

    r1732 r1733  
    615615                name_max = NAME_MAX; 
    616616#else 
    617                 name_max = 256; /* stupid default */ 
     617                name_max = 255; /* stupid default */ 
    618618#endif 
    619619        }