patch-sysdep_h 426 B

1234567891011121314
  1. $OpenBSD: patch-sysdep_h,v 1.2 2011/11/11 20:08:40 jasper Exp $
  2. --- sysdep.h.orig Fri Nov 11 20:49:39 2011
  3. +++ sysdep.h Fri Nov 11 20:50:09 2011
  4. @@ -670,7 +670,8 @@
  5. #endif
  6. #ifndef MSDOS /* maximum path length (including '\0') */
  7. -# define FILESIZE 256
  8. +# include <sys/param.h>
  9. +# define FILESIZE MAXPATHLEN
  10. #else /* MSDOS */
  11. # define FILESIZE 128 /* currently, 2+1+64+3+1+3+1 == 80 ought to be OK */
  12. #endif /* MSDOS */