]> granicus.if.org Git - apache/commitdiff
Style ('{' on same line as function definition)
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 11 Oct 2014 05:47:02 +0000 (05:47 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 11 Oct 2014 05:47:02 +0000 (05:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1631021 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/mod_ssl_ct.c
modules/test/mod_policy.c
server/apreq_module_cgi.c
server/apreq_util.c

index 800cdb7ab5571af2f2fe7a8155c3d0e8e7a0b220..d51164b1519ae2470fa951a764c872674c62362b 100644 (file)
@@ -1565,7 +1565,8 @@ static cert_chain *cert_chain_init(apr_pool_t *p, STACK_OF(X509) *chain)
     return cc;
 }
 
-static void cert_chain_free(cert_chain *cc) {
+static void cert_chain_free(cert_chain *cc)
+{
     X509 **elts = (X509 **)cc->cert_arr->elts;
     int i;
 
index 8138f83165ea2050868579d1f9ac412e840bb4fc..74dcd8a2e9e2a97e6cdcf414c684ed21e89a1232 100644 (file)
@@ -335,7 +335,8 @@ static apr_status_t policy_keepalive_out_filter(ap_filter_t *f,
     return ap_pass_brigade(f->next, bb);
 }
 
-static int vary_test(void *rec, const char *key, const char *value) {
+static int vary_test(void *rec, const char *key, const char *value)
+{
     request_rec *r = (request_rec *)rec;
     char *token = apr_pstrdup(r->pool, value);
     char *last;
index d3910f40e1ce18a3822041bdc396743694f2aa96..9efc6ac5947af5c9a94c136968cf04518c916e9b 100644 (file)
@@ -98,7 +98,8 @@ static const TRANS priorities[] = {
     {NULL,      -1},
 };
 
-static char* chomp(char* str) {
+static char* chomp(char* str)
+{
     long p = (long)strlen(str);
     while (--p >= 0) {
         switch ((char)(str[p])) {
@@ -949,7 +950,8 @@ static apr_status_t ba_cleanup(void *data)
 
  Definately more work needed here...
 */
-static int is_interactive_mode(apr_pool_t *pool) {
+static int is_interactive_mode(apr_pool_t *pool)
+{
     char *value = NULL, qs[] = "GATEWAY_INTERFACE";
     apr_status_t rv;
 
index 6d33fa94fb32f9c05696dda230a328d6fdcfa617..7f196a7607f162460d8459f81f650201e5561687 100644 (file)
@@ -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;