summaryrefslogtreecommitdiff
path: root/server/mpm_common.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2002-07-15 08:05:11 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2002-07-15 08:05:11 +0000
commited8fc9abaef1ff689c07588d2599be85353f0e86 (patch)
tree4f5545d23ddf88bbf9c4c778c3bc7b76ad71e933 /server/mpm_common.c
parent7207c17ad2ffa0846bc75ae285c61730187965c4 (diff)
downloadhttpd-ed8fc9abaef1ff689c07588d2599be85353f0e86.tar.gz
http occurances to update for apr_socket_opt_get/set
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96057 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r--server/mpm_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/mpm_common.c b/server/mpm_common.c
index 1ebca2de64..da82267d66 100644
--- a/server/mpm_common.c
+++ b/server/mpm_common.c
@@ -314,11 +314,11 @@ void ap_sock_disable_nagle(apr_socket_t *s)
*
* In spite of these problems, failure here is not a shooting offense.
*/
- apr_status_t status = apr_setsocketopt(s, APR_TCP_NODELAY, 1);
+ apr_status_t status = apr_socket_opt_set(s, APR_TCP_NODELAY, 1);
if (status != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_WARNING, status, ap_server_conf,
- "setsockopt: (TCP_NODELAY)");
+ "apr_socket_opt_set: (TCP_NODELAY)");
}
}
#endif