diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-11 12:18:27 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-11 12:18:27 +0000 |
commit | ba290ef3affaad8a51b789eeadab269df1ffd0af (patch) | |
tree | 8e15a9f51b5bb24327fcd83b1d86d923ce6be430 /ge.c | |
parent | 237095fd9a40120ef4e4bb7b7525d45c89c6cfb0 (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.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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': |