diff options
| author | 2014-08-04 15:49:28 +0000 | |
|---|---|---|
| committer | 2014-08-04 15:49:28 +0000 | |
| commit | 844c36159ebc63d46c68376392f46bcb30e544cd (patch) | |
| tree | a30af61b1be68c1ca83f706e784554adc1658ca9 /usr.sbin/httpd/control.c | |
| parent | Free the SSL context first and let the reference counting do its thing. (diff) | |
| download | wireguard-openbsd-844c36159ebc63d46c68376392f46bcb30e544cd.tar.xz wireguard-openbsd-844c36159ebc63d46c68376392f46bcb30e544cd.zip | |
Add initial support for log files in /var/www/logs/. Logging with
syslog is still supported but disabled by default.
ok deraadt@
Diffstat (limited to 'usr.sbin/httpd/control.c')
| -rw-r--r-- | usr.sbin/httpd/control.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/httpd/control.c b/usr.sbin/httpd/control.c index e35f7b4aab9..1988ba7fc3a 100644 --- a/usr.sbin/httpd/control.c +++ b/usr.sbin/httpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.3 2014/08/04 11:09:25 reyk Exp $ */ +/* $OpenBSD: control.c,v 1.4 2014/08/04 15:49:28 reyk Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -269,6 +269,7 @@ control_dispatch_imsg(int fd, short event, void *arg) switch (imsg.hdr.type) { case IMSG_CTL_SHUTDOWN: case IMSG_CTL_RELOAD: + case IMSG_CTL_REOPEN: proc_forward_imsg(env->sc_ps, &imsg, PROC_PARENT, -1); break; case IMSG_CTL_NOTIFY: |
