aboutsummaryrefslogtreecommitdiff
path: root/ge.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-06-11 12:18:27 +0000
committerOmar Polo <op@omarpolo.com>2023-06-11 12:18:27 +0000
commitba290ef3affaad8a51b789eeadab269df1ffd0af (patch)
tree8e15a9f51b5bb24327fcd83b1d86d923ce6be430 /ge.c
parent237095fd9a40120ef4e4bb7b7525d45c89c6cfb0 (diff)
disable the privsep crypto engine on !OpenBSD
it fails bandly at runtime on various linux distros and on freebsd. Until a fix is found, disable it so I can move forward.
Diffstat (limited to 'ge.c')
-rw-r--r--ge.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ge.c b/ge.c
index 36b9dd9..546238c 100644
--- a/ge.c
+++ b/ge.c
@@ -249,6 +249,9 @@ main(int argc, char **argv)
log_setverbose(0);
conf = config_new();
+ /* ge doesn't do privsep so no privsep crypto engine. */
+ conf->use_privsep_crypto = 0;
+
while ((ch = getopt_long(argc, argv, "d:H:hp:Vv", opts, NULL)) != -1) {
switch (ch) {
case 'd':