summaryrefslogtreecommitdiff
path: root/network_io
diff options
context:
space:
mode:
authoraaron <aaron@13f79535-47bb-0310-9956-ffa450edef68>2001-11-26 16:34:36 +0000
committeraaron <aaron@13f79535-47bb-0310-9956-ffa450edef68>2001-11-26 16:34:36 +0000
commit1017c7f1c01a4bb3f1e5fe99443e9f6a69d8dc76 (patch)
tree38818bcef5f5180d2a822f97ec658d0e1e72c9db /network_io
parente2f79a5706301f02ca8031e6d9bcd07c5b055af0 (diff)
downloadlibapr-1017c7f1c01a4bb3f1e5fe99443e9f6a69d8dc76.tar.gz
Fix minor typo in last patch: the pool has a different name.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'network_io')
-rw-r--r--network_io/unix/sockets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/network_io/unix/sockets.c b/network_io/unix/sockets.c
index 72a16a019..45d1d7040 100644
--- a/network_io/unix/sockets.c
+++ b/network_io/unix/sockets.c
@@ -225,7 +225,7 @@ apr_status_t apr_accept(apr_socket_t **new, apr_socket_t *sock, apr_pool_t *conn
pool for the accepted socket back to what it should be. Otherwise all
allocations for this socket will come from a server pool that is not
freed until the process goes down.*/
- (*new)->local_addr->pool = p;
+ (*new)->local_addr->pool = connection_context;
/* fix up any pointers which are no longer valid */
if (sock->local_addr->sa.sin.sin_family == AF_INET) {