diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-08 00:01:00 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-08 00:01:00 +0000 |
commit | 515427bb6debe1510e814d7777675bca127d4558 (patch) | |
tree | 369d4c3bd4326e0214f8d0a4e3368eadcbde1874 /usr.sbin | |
parent | 876ac822db47c16575b9182a442f418557f87776 (diff) |
spacing
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/httpd/httpd.c | 4 | ||||
-rw-r--r-- | usr.sbin/httpd/logger.c | 4 | ||||
-rw-r--r-- | usr.sbin/httpd/parse.y | 4 | ||||
-rw-r--r-- | usr.sbin/httpd/server_file.c | 5 | ||||
-rw-r--r-- | usr.sbin/httpd/server_http.c | 5 |
5 files changed, 12 insertions, 10 deletions
diff --git a/usr.sbin/httpd/httpd.c b/usr.sbin/httpd/httpd.c index 5ea455e609a..f640dc2bfbd 100644 --- a/usr.sbin/httpd/httpd.c +++ b/usr.sbin/httpd/httpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: httpd.c,v 1.31 2015/01/21 22:21:05 reyk Exp $ */ +/* $OpenBSD: httpd.c,v 1.32 2015/02/08 00:00:59 reyk Exp $ */ /* * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org> @@ -584,7 +584,7 @@ url_decode(char *url) } *q = '\0'; - return(url); + return (url); } const char * diff --git a/usr.sbin/httpd/logger.c b/usr.sbin/httpd/logger.c index c7a9bc3fda4..b4e440476ea 100644 --- a/usr.sbin/httpd/logger.c +++ b/usr.sbin/httpd/logger.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logger.c,v 1.10 2015/01/21 22:21:05 reyk Exp $ */ +/* $OpenBSD: logger.c,v 1.11 2015/02/08 00:00:59 reyk Exp $ */ /* * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org> @@ -194,7 +194,7 @@ logger_open(struct server *srv, struct server_config *srv_conf, void *arg) struct log_file *log, *logfile = NULL, *errfile = NULL; if (srv_conf->flags & SRVFLAG_SYSLOG) - return(0); + return (0); /* disassociate */ srv_conf->logaccess = srv_conf->logerror = NULL; diff --git a/usr.sbin/httpd/parse.y b/usr.sbin/httpd/parse.y index 3c4585a24dd..6596c2a09df 100644 --- a/usr.sbin/httpd/parse.y +++ b/usr.sbin/httpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.62 2015/02/07 06:26:28 jsing Exp $ */ +/* $OpenBSD: parse.y,v 1.63 2015/02/08 00:00:59 reyk Exp $ */ /* * Copyright (c) 2007 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -132,7 +132,7 @@ typedef struct { %token ACCESS ALIAS AUTO BACKLOG BODY BUFFER CERTIFICATE CHROOT CIPHERS COMMON %token COMBINED CONNECTION DHE DIRECTORY ECDHE ERR FCGI INDEX IP KEY LISTEN %token LOCATION LOG LOGDIR MAXIMUM NO NODELAY ON PORT PREFORK REQUEST REQUESTS -%token ROOT SACK SERVER SOCKET STRIP STYLE SYSLOG TCP TIMEOUT TLS TYPES +%token ROOT SACK SERVER SOCKET STRIP STYLE SYSLOG TCP TIMEOUT TLS TYPES %token ERROR INCLUDE AUTHENTICATE WITH BLOCK DROP RETURN PASS %token <v.string> STRING %token <v.number> NUMBER diff --git a/usr.sbin/httpd/server_file.c b/usr.sbin/httpd/server_file.c index 2add01e4aa3..b24f0c07e99 100644 --- a/usr.sbin/httpd/server_file.c +++ b/usr.sbin/httpd/server_file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server_file.c,v 1.48 2015/01/21 22:21:05 reyk Exp $ */ +/* $OpenBSD: server_file.c,v 1.49 2015/02/08 00:00:59 reyk Exp $ */ /* * Copyright (c) 2006 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -349,7 +349,8 @@ server_file_index(struct httpd *env, struct client *clt, struct stat *st) if (evbuffer_add_printf(evb, "<a href=\"%s\">%s</a>%*s%s%20llu\n", dp->d_name, dp->d_name, - MAXIMUM(namewidth, 0), " ", tmstr, st->st_size) == -1) + MAXIMUM(namewidth, 0), " ", + tmstr, st->st_size) == -1) skip = 1; } free(dp); diff --git a/usr.sbin/httpd/server_http.c b/usr.sbin/httpd/server_http.c index 0085aabf94e..d4d3c97fe74 100644 --- a/usr.sbin/httpd/server_http.c +++ b/usr.sbin/httpd/server_http.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server_http.c,v 1.73 2015/02/07 23:59:28 reyk Exp $ */ +/* $OpenBSD: server_http.c,v 1.74 2015/02/08 00:00:59 reyk Exp $ */ /* * Copyright (c) 2006 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -1294,7 +1294,8 @@ server_log_http(struct client *clt, u_int code, size_t len) agent = NULL; if (evbuffer_add_printf(clt->clt_log, - "%s %s - %s [%s] \"%s %s%s%s%s%s\" %03d %zu \"%s\" \"%s\"\n", + "%s %s - %s [%s] \"%s %s%s%s%s%s\"" + " %03d %zu \"%s\" \"%s\"\n", srv_conf->name, ip, clt->clt_remote_user == NULL ? "-" : clt->clt_remote_user, tstamp, server_httpmethod_byid(desc->http_method), |