mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
Fixed inclusion of <sys/param.h> for Solaris/OpenIndiana
The truncation of oversized file names on Solaris/OpenIndiana requires the definition of the maximum size from <sys/param.h> instead of <param.h>
This commit is contained in:
parent
9e7184e2a6
commit
556bb9fada
@ -80,7 +80,7 @@
|
||||
#if defined(__APPLE__) || defined(__DARWIN__)
|
||||
#include <sys/dirent.h>
|
||||
#elif defined(__sun) && defined (__SVR4)
|
||||
#include <param.h>
|
||||
#include <sys/param.h>
|
||||
#endif /* defined(__APPLE__) || defined(__DARWIN__), ... */
|
||||
|
||||
#include "compat.h"
|
||||
|
@ -79,7 +79,7 @@
|
||||
#if defined(__APPLE__) || defined(__DARWIN__)
|
||||
#include <sys/dirent.h>
|
||||
#elif defined(__sun) && defined (__SVR4)
|
||||
#include <param.h>
|
||||
#include <sys/param.h>
|
||||
#endif /* defined(__APPLE__) || defined(__DARWIN__), ... */
|
||||
|
||||
#include "compat.h"
|
||||
|
Loading…
Reference in New Issue
Block a user