You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
306 B

  1. --- a/src/getsdir.h
  2. +++ b/src/getsdir.h
  3. @@ -24,6 +24,10 @@
  4. #include <dirent.h>
  5. +#ifndef MAXNAMLEN
  6. +#define MAXNAMLEN 255
  7. +#endif
  8. +
  9. typedef struct dirEntry { /* structure of data item */
  10. char fname[MAXNAMLEN + 1]; /* filename + terminating null */
  11. time_t time; /* last modification date */