From 973f19b4fe73ef956fbb4eeaf963bbb83c926203 Mon Sep 17 00:00:00 2001 From: edef Date: Wed, 27 Nov 2019 17:45:31 +0000 Subject: Reference openssl(1) by absolute path This still allows using openssl(1) from PATH, but defaults to using ${LIBRESSL_PREFIX}/bin/openssl. --- bounce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bounce.c') 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 -- cgit 1.4.1