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;
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;
{NULL, -1},
};
-static char* chomp(char* str) {
+static char* chomp(char* str)
+{
long p = (long)strlen(str);
while (--p >= 0) {
switch ((char)(str[p])) {
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;
}
-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
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;