]> granicus.if.org Git - apache/commitdiff
Oops... missed this when I switched slaves to their
authorJim Jagielski <jim@apache.org>
Fri, 7 Feb 2014 16:44:57 +0000 (16:44 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 7 Feb 2014 16:44:57 +0000 (16:44 +0000)
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

index 950f33697dc0e31c55b002a1b86b09c4bc78558c..8cb09fc06e6a5718ddda617ec1080d8911dcbfd0 100644 (file)
@@ -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))