summaryrefslogtreecommitdiff
path: root/server/apreq_util.c
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2014-10-11 05:47:02 +0000
committerChristophe Jaillet <jailletc36@apache.org>2014-10-11 05:47:02 +0000
commita3ca028f706b81727c3d3bd7229584934faf5415 (patch)
treec409871ff8359876d260b4afa7b796f7e282e689 /server/apreq_util.c
parentf9b0746e8f960922cb3a56b6261db1bd275c9bd2 (diff)
downloadhttpd-a3ca028f706b81727c3d3bd7229584934faf5415.tar.gz
Style ('{' on same line as function definition)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1631021 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/apreq_util.c')
-rw-r--r--server/apreq_util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/server/apreq_util.c b/server/apreq_util.c
index 6d33fa94fb..7f196a7607 100644
--- a/server/apreq_util.c
+++ b/server/apreq_util.c
@@ -321,7 +321,8 @@ APREQ_DECLARE(apreq_charset_t) apreq_charset_divine(const char *src,
}
-static APR_INLINE apr_uint16_t hex4_to_bmp(const char *what) {
+static APR_INLINE apr_uint16_t hex4_to_bmp(const char *what)
+{
register apr_uint16_t digit = 0;
#if !APR_CHARSET_EBCDIC
@@ -524,7 +525,8 @@ APREQ_DECLARE(apr_size_t) apreq_encode(char *dest, const char *src,
return d - dest;
}
-static int is_quoted(const char *p, const apr_size_t len) {
+static int is_quoted(const char *p, const apr_size_t len)
+{
if (len > 1 && p[0] == '"' && p[len-1] == '"') {
apr_size_t i;
int backslash = 0;