mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
S_IFNAM -> S_ISNAM (for QNX)
This commit is contained in:
@@ -135,8 +135,8 @@ randombytes_salsa20_random_random_dev_open(void)
|
||||
fd = open(*device, O_RDONLY);
|
||||
if (fd != -1) {
|
||||
if (fstat(fd, &st) == 0 &&
|
||||
# ifdef S_IFNAM
|
||||
(S_IFNAM(st.st_mode) || S_ISCHR(st.st_mode))
|
||||
# ifdef S_ISNAM
|
||||
(S_ISNAM(st.st_mode) || S_ISCHR(st.st_mode))
|
||||
# else
|
||||
S_ISCHR(st.st_mode)
|
||||
# endif
|
||||
|
||||
@@ -120,8 +120,8 @@ randombytes_sysrandom_random_dev_open(void)
|
||||
fd = open(*device, O_RDONLY);
|
||||
if (fd != -1) {
|
||||
if (fstat(fd, &st) == 0 &&
|
||||
# ifdef S_IFNAM
|
||||
(S_IFNAM(st.st_mode) || S_ISCHR(st.st_mode))
|
||||
# ifdef S_ISNAM
|
||||
(S_ISNAM(st.st_mode) || S_ISCHR(st.st_mode))
|
||||
# else
|
||||
S_ISCHR(st.st_mode)
|
||||
# endif
|
||||
|
||||
Reference in New Issue
Block a user