Commit d7d95596 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

file: Big bug... typo in the define.

The code was never enabled.
parent 7f41e3ed
......@@ -381,11 +381,15 @@ static int open_file (access_t *p_access, const char *path)
return -1;
}
# if defined(HAVE_FCNTL_H) && defined(F_FDAHEAD) && defined(F_NOCACHE)
# if defined(HAVE_FCNTL_H)
/* We'd rather use any available memory for reading ahead
* than for caching what we've already seen/heard */
# if defined(F_RDAHEAD)
fcntl (fd, F_RDAHEAD, 1);
# endif
# if defined(F_NOCACHE)
fcntl (fd, F_NOCACHE, 1);
# endif
# endif
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment