blob: 75da4fbfb25b897526b5722977e5b677a46079af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-src_main_command.c,v 1.1 2021/06/25 11:42:48 adam Exp $
O_DIRECTORY is a Linuxism and O_NOFOLLOW is a BSDism ported to Linux
--- src/main/command.c.orig 2016-09-29 15:19:48.000000000 +0000
+++ src/main/command.c
@@ -21,6 +21,16 @@
* Copyright 2008 Alan DeKok <aland@deployingradius.com>
*/
+/*
+ * Not every implementation knows what O_DIRECTORY and O_NOFOLLOW are
+ */
+#ifndef O_DIRECTORY
+#define O_DIRECTORY 0
+#endif
+#ifndef O_NOFOLLOW
+#define O_NOFOLLOW 0
+#endif
+
#ifdef WITH_COMMAND_SOCKET
#include <freeradius-devel/parser.h>
|