summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd
diff options
context:
space:
mode:
authordenis <denis@openbsd.org>2018-06-11 10:04:12 +0000
committerdenis <denis@openbsd.org>2018-06-11 10:04:12 +0000
commit490da9df29ec075c30df1234c331dd140e517827 (patch)
tree3c61722cb615ed7160fb8ea3ed707a7addde0f65 /usr.sbin/httpd
parentFix an off-by-one line count when using include statements. (diff)
downloadwireguard-openbsd-490da9df29ec075c30df1234c331dd140e517827.tar.xz
wireguard-openbsd-490da9df29ec075c30df1234c331dd140e517827.zip
Sorry, forgot a whitespace.
Spotted by benno@
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r--usr.sbin/httpd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/parse.y b/usr.sbin/httpd/parse.y
index 28048e9637a..6827a9d2775 100644
--- a/usr.sbin/httpd/parse.y
+++ b/usr.sbin/httpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.100 2018/06/11 10:01:55 denis Exp $ */
+/* $OpenBSD: parse.y,v 1.101 2018/06/11 10:04:12 denis Exp $ */
/*
* Copyright (c) 2007 - 2015 Reyk Floeter <reyk@openbsd.org>
@@ -59,7 +59,7 @@ static struct file {
TAILQ_ENTRY(file) entry;
FILE *stream;
char *name;
- size_t ungetpos;
+ size_t ungetpos;
size_t ungetsize;
u_char *ungetbuf;
int eof_reached;