diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-05-31 15:28:09 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-05-31 15:28:09 +0000 |
commit | 321af7d704a4dd1f0fb7e099a5657ce6c81e1cd0 (patch) | |
tree | 7a2cb9c179915609f14429f3010b5b262a91e9b8 /usr.sbin/httpd | |
parent | 8939658e743c2c6948ed9204c47a6bcbc920664b (diff) |
Unbreak compilation with -DDEBUG.
From Fabian Raetz <fabian dot raetz at gmail dot com>
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/config.c b/usr.sbin/httpd/config.c index 5c378fd20db..36b9abdb08d 100644 --- a/usr.sbin/httpd/config.c +++ b/usr.sbin/httpd/config.c @@ -1,4 +1,4 @@ -/* $OpenBSD: config.c,v 1.45 2016/04/28 14:20:11 jsing Exp $ */ +/* $OpenBSD: config.c,v 1.46 2016/05/31 15:28:08 jsing Exp $ */ /* * Copyright (c) 2011 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -582,7 +582,7 @@ config_gettls(struct httpd *env, struct imsg *imsg) DPRINTF("%s: %s %d TLS configuration \"%s[%u]\"", __func__, ps->ps_title[privsep_process], ps->ps_instance, - srv_conf->name, srv->srv_conf.id); + srv_conf->name, srv_conf->id); if (tls_conf.tls_cert_len != 0) { srv_conf->tls_cert_len = tls_conf.tls_cert_len; |