and fix a style nit (colm).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@293170
13f79535-47bb-0310-9956-
ffa450edef68
&& lr->bind_addr->port == lr->next->bind_addr->port
&& IS_IN6ADDR_ANY(lr->next->bind_addr)) {
/* Exchange lr and lr->next */
- ap_listen_rec *next = lr->next;
+ next = lr->next;
lr->next = next->next;
next->next = lr;
if (previous) {
return num_listeners;
}
-AP_DECLARE_NONSTD(void) ap_close_listeners(void) {
+AP_DECLARE_NONSTD(void) ap_close_listeners(void)
+{
ap_listen_rec *lr;
for (lr = ap_listeners; lr; lr = lr->next) {