summaryrefslogtreecommitdiff
path: root/src/mod_evhost.c
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2009-07-12 16:23:18 +0000
committerStefan Bühler <stbuehler@web.de>2009-07-12 16:23:18 +0000
commitb790231357a5b7d71da3d60a441b29f90e17f538 (patch)
tree5f8b1729b3584daacbbfab16bfc7a49b3feb773c /src/mod_evhost.c
parente1645ed287632b681b5ac4653d36f48fcf50e45b (diff)
downloadlighttpd-git-b790231357a5b7d71da3d60a441b29f90e17f538.tar.gz
Fix comment style
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2581 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_evhost.c')
-rw-r--r--src/mod_evhost.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_evhost.c b/src/mod_evhost.c
index 2cb695b7..cd52c09b 100644
--- a/src/mod_evhost.c
+++ b/src/mod_evhost.c
@@ -294,10 +294,10 @@ static handler_t mod_evhost_uri_handler(server *srv, connection *con, void *p_d)
char *colon = strchr(con->uri.authority->ptr, ':');
if(colon == NULL) {
- buffer_append_string_buffer(p->tmp_buf, con->uri.authority); // adds fqdn
+ buffer_append_string_buffer(p->tmp_buf, con->uri.authority); /* adds fqdn */
} else {
/* strip the port out of the authority-part of the URI scheme */
- buffer_append_string_len(p->tmp_buf, con->uri.authority->ptr, colon - con->uri.authority->ptr); // adds fqdn
+ buffer_append_string_len(p->tmp_buf, con->uri.authority->ptr, colon - con->uri.authority->ptr); /* adds fqdn */
}
} else if (NULL != (ds = (data_string *)array_get_element(parsed_host,p->conf.path_pieces[i]->ptr))) {
if (ds->value->used) {