Browse Source

[pool] Fix check for reopenable pooled connections

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Suresh Sundriyal 8 years ago
parent
commit
4afb758423
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/include/ipxe/pool.h

+ 1
- 1
src/include/ipxe/pool.h View File

112
 	/* A connection is reopenable if it has been recycled but is
112
 	/* A connection is reopenable if it has been recycled but is
113
 	 * not yet known to be alive.
113
 	 * not yet known to be alive.
114
 	 */
114
 	 */
115
-	return ( ( pool->flags & POOL_RECYCLED ) &
115
+	return ( ( pool->flags & POOL_RECYCLED ) &&
116
 		 ( ! ( pool->flags & POOL_ALIVE ) ) );
116
 		 ( ! ( pool->flags & POOL_ALIVE ) ) );
117
 }
117
 }
118
 
118
 

Loading…
Cancel
Save