diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-07-18 18:56:55 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-07-18 18:56:55 +0200 |
commit | b65ca11a4a8c34ee7738813a82f67538c8d4d52d (patch) | |
tree | ad81b999851d2099d317326e2dcbbe866803cf61 /support/ab.c | |
parent | sweep up some cruft, and clean out a good solve by Mr. Stoddard (diff) | |
download | apache2-b65ca11a4a8c34ee7738813a82f67538c8d4d52d.tar.xz apache2-b65ca11a4a8c34ee7738813a82f67538c8d4d52d.zip |
Changes to back out inherit flag from apr_os_sock_make()
and apr_socket_create()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89592 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/ab.c')
-rw-r--r-- | support/ab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/ab.c b/support/ab.c index 0ff1cec321..43d47c632a 100644 --- a/support/ab.c +++ b/support/ab.c @@ -844,7 +844,7 @@ static void start_connect(struct connection * c) apr_err(buf, rv); } if ((rv = apr_socket_create(&c->aprsock, destsa->sa.sin.sin_family, - SOCK_STREAM, APR_NO_INHERIT, cntxt)) != APR_SUCCESS) { + SOCK_STREAM, cntxt)) != APR_SUCCESS) { apr_err("socket", rv); } c->start = apr_time_now(); @@ -1289,14 +1289,14 @@ static void test(void) static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.73 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.74 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("<p>\n"); - printf(" This is ApacheBench, Version %s <i><%s></i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.73 $"); + printf(" This is ApacheBench, Version %s <i><%s></i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.74 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n"); printf(" Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/<br>\n"); printf("</p>\n<p>\n"); |