summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobert <robert@openbsd.org>2013-03-21 20:16:48 +0000
committerrobert <robert@openbsd.org>2013-03-21 20:16:48 +0000
commit215373c4b9f5cb0eac948b3df3be26eb807ce936 (patch)
treebb36a2ccbf96b4fa4387cc4735ddc16fca143bee
parentIn a comment, talk about PAGE_SIZE instead of NBPG (diff)
downloadwireguard-openbsd-215373c4b9f5cb0eac948b3df3be26eb807ce936.tar.xz
wireguard-openbsd-215373c4b9f5cb0eac948b3df3be26eb807ce936.zip
re-add a build fix for vax that was overwritten by the update
-rw-r--r--usr.sbin/nginx/src/core/ngx_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/nginx/src/core/ngx_log.c b/usr.sbin/nginx/src/core/ngx_log.c
index 982c2ed52a7..ddc2bbf6847 100644
--- a/usr.sbin/nginx/src/core/ngx_log.c
+++ b/usr.sbin/nginx/src/core/ngx_log.c
@@ -645,7 +645,7 @@ ngx_set_syslog(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
char *program;
ngx_str_t *value;
- ngx_int_t facility, match = 0;
+ ngx_int_t facility = SYSLOG_FACILITY, match = 0;
ngx_uint_t n;
value = cf->args->elts;