Hello Jim,

What is the purpose of the extra / on line 1?

Thanks,

Mike Rumph
On 2/7/2014 8:44 AM, j...@apache.org wrote:
Author: jim
Date: Fri Feb  7 16:44:57 2014
New Revision: 1565717

URL: http://svn.apache.org/r1565717
Log:
Oops... missed this when I switched slaves to their
own struct (for ease of use w/ arrays)

Modified:
     httpd/httpd/trunk/server/core.c

Modified: httpd/httpd/trunk/server/core.c
URL: 
http://svn.apache.org/viewvc/httpd/httpd/trunk/server/core.c?rev=1565717&r1=1565716&r2=1565717&view=diff
==============================================================================
--- httpd/httpd/trunk/server/core.c (original)
+++ httpd/httpd/trunk/server/core.c Fri Feb  7 16:44:57 2014
@@ -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_po
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))





Reply via email to