summary refs log tree commit diff
path: root/bounce.c
diff options
context:
space:
mode:
authoredef <edef@edef.eu>2019-11-27 17:45:31 +0000
committerJune McEnroe <june@causal.agency>2019-11-27 14:36:29 -0500
commit973f19b4fe73ef956fbb4eeaf963bbb83c926203 (patch)
tree3ee1f5ec7551c9a7d85ebca0cb6dcbd245ec16b9 /bounce.c
parentSimplify Linux.mk (diff)
downloadpounce-973f19b4fe73ef956fbb4eeaf963bbb83c926203.tar.gz
pounce-973f19b4fe73ef956fbb4eeaf963bbb83c926203.zip
Reference openssl(1) by absolute path
This still allows using openssl(1) from PATH, but defaults to using
${LIBRESSL_PREFIX}/bin/openssl.
Diffstat (limited to 'bounce.c')
-rw-r--r--bounce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bounce.c b/bounce.c
index d4b6175..2b1413d 100644
--- a/bounce.c
+++ b/bounce.c
@@ -59,7 +59,7 @@ static void genCert(const char *path) {
 	snprintf(subj, sizeof(subj), "/CN=%.*s", (int)strcspn(name, "."), name);
 	umask(0066);
 	execlp(
-		"openssl", "openssl", "req",
+		LIBRESSL_BIN_PREFIX "openssl", "openssl", "req",
 		"-x509", "-new", "-newkey", "rsa:4096", "-sha256", "-days", "1000",
 		"-nodes", "-subj", subj, "-out", path, "-keyout", path,
 		NULL