tlsrp

A simple TLS reverse proxy
git clone git://nihaljere.xyz/tlsrp
Log | Files | Refs | README | LICENSE

commit 101ea425ed821966f405602b0031c2ab06c8ff03
parent 3deca17c39dc1c27e13451f0fa95c0333a1ea36a
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Thu, 30 Jul 2020 17:23:35 -0500

fix missing semicolon

Diffstat:
Mtlsrp.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tlsrp.c b/tlsrp.c @@ -257,7 +257,7 @@ main(int argc, char* argv[]) die("can only receive on unix socket xor network socket"); if (!ca_path || !cert_path || !key_path) - die("must provide ca_path, cert_path and key_path") + die("must provide ca_path, cert_path and key_path"); if ((config = tls_config_new()) == NULL) tcdie(config, "failed to get tls config:");