summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/httpd/parse.y')
-rw-r--r--usr.sbin/httpd/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/httpd/parse.y b/usr.sbin/httpd/parse.y
index 9daf57c7592..a2a4107d2cb 100644
--- a/usr.sbin/httpd/parse.y
+++ b/usr.sbin/httpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.29 2014/08/06 02:04:42 jsing Exp $ */
+/* $OpenBSD: parse.y,v 1.30 2014/08/06 12:56:58 reyk Exp $ */
/*
* Copyright (c) 2007 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -307,13 +307,13 @@ serveroptsl : LISTEN ON STRING port optssl {
s->srv_conf.flags |= SRVFLAG_SSL;
}
}
- | TCP {
+ | TCP {
if (parentsrv != NULL) {
yyerror("tcp flags inside location");
YYERROR;
}
} tcpip
- | CONNECTION {
+ | CONNECTION {
if (parentsrv != NULL) {
yyerror("connection options inside location");
YYERROR;