From ea4859bfb139bc29dd2dc7b96ecc88ebd27b8789 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Fri, 7 Feb 2014 16:44:57 +0000 Subject: [PATCH] Oops... missed this when I switched slaves to their own struct (for ease of use w/ arrays) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1565717 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/core.c b/server/core.c index 950f33697d..8cb09fc06e 100644 --- a/server/core.c +++ b/server/core.c @@ -1,4 +1,4 @@ -/* Licensed to the Apache Software Foundation (ASF) under one or more +//* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 @@ -4848,7 +4848,7 @@ static conn_rec *core_create_conn(apr_pool_t *ptrans, server_rec *s, c->conn_config = ap_create_conn_config(c->pool); c->notes = apr_table_make(c->pool, 5); - c->slaves = apr_array_make(c->pool, 20, sizeof(conn_rec *)); + c->slaves = apr_array_make(c->pool, 20, sizeof(conn_slave_rec *)); if ((rv = apr_socket_addr_get(&c->local_addr, APR_LOCAL, csd)) -- 2.40.0