summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-11-21 17:49:10 +0000
committerderaadt <deraadt@openbsd.org>2014-11-21 17:49:10 +0000
commit128646b196dc9ca9af3eed469c86356bf58cd75d (patch)
treee654b0de74e8b9a1db6b86f96642f12589179b6e
parentremove pointless if_var.h and socketvar.h includes; ok deraadt (diff)
downloadwireguard-openbsd-128646b196dc9ca9af3eed469c86356bf58cd75d.tar.xz
wireguard-openbsd-128646b196dc9ca9af3eed469c86356bf58cd75d.zip
white space begone
-rw-r--r--usr.sbin/httpd/httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/httpd.c b/usr.sbin/httpd/httpd.c
index 6579e6b347a..0b8d8b75418 100644
--- a/usr.sbin/httpd/httpd.c
+++ b/usr.sbin/httpd/httpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: httpd.c,v 1.24 2014/11/11 15:54:45 beck Exp $ */
+/* $OpenBSD: httpd.c,v 1.25 2014/11/21 17:49:10 deraadt Exp $ */
/*
* Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org>
@@ -565,7 +565,7 @@ url_decode(char *url)
* We don't have to validate "hex" because it is
* guaranteed to include two hex chars followed by nul.
*/
- x = strtoul(hex, NULL, 16);
+ x = strtoul(hex, NULL, 16);
*q = (char)x;
p += 2;
break;