diff options
author | 2017-01-31 17:25:05 +0000 | |
---|---|---|
committer | 2017-01-31 17:25:05 +0000 | |
commit | 4222661e26541bc1e0cb5b714babfc7b9c9824ea (patch) | |
tree | 2793d2aa7759417321305b876f8252a7d816fa80 | |
parent | Sprinkle some free sizes in uvm/ (diff) | |
download | wireguard-openbsd-4222661e26541bc1e0cb5b714babfc7b9c9824ea.tar.xz wireguard-openbsd-4222661e26541bc1e0cb5b714babfc7b9c9824ea.zip |
Correct mistake I made when converting this to new funciton
-rw-r--r-- | usr.sbin/httpd/server.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/httpd/server.c b/usr.sbin/httpd/server.c index bd54db6c144..ee85d25776b 100644 --- a/usr.sbin/httpd/server.c +++ b/usr.sbin/httpd/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.103 2017/01/31 16:18:57 beck Exp $ */ +/* $OpenBSD: server.c,v 1.104 2017/01/31 17:25:05 beck Exp $ */ /* * Copyright (c) 2006 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -244,7 +244,8 @@ server_tls_init(struct server *srv) if (tls_config_set_keypair_ocsp_mem(srv->srv_tls_config, srv->srv_conf.tls_cert, srv->srv_conf.tls_cert_len, srv->srv_conf.tls_key, srv->srv_conf.tls_key_len, - srv_conf->tls_ocsp_staple, srv_conf->tls_ocsp_staple_len) != 0) { + srv->srv_conf.tls_ocsp_staple, + srv->srv_conf.tls_ocsp_staple_len) != 0) { log_warnx("%s: failed to set tls certificate/key: %s", __func__, tls_config_error(srv->srv_tls_config)); return (-1); |