summaryrefslogtreecommitdiffstats
path: root/support/ab.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2007-09-06 01:19:51 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2007-09-06 01:19:51 +0200
commit5b2042993ee7ed8399346192b2ac66b31354d905 (patch)
treec0e251807acce0b1d2192aa102a52f19e2233fc2 /support/ab.c
parentBe proactively safe. A cheap check, but helps prevents badness :) (diff)
downloadapache2-5b2042993ee7ed8399346192b2ac66b31354d905.tar.xz
apache2-5b2042993ee7ed8399346192b2ac66b31354d905.zip
Kill the compiler emit - casting struct * to char * (as defined
in openssl 0.9.8e). Easiest is to cast through void *. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@573101 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--support/ab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/ab.c b/support/ab.c
index 3e10295096..58299a3db2 100644
--- a/support/ab.c
+++ b/support/ab.c
@@ -1178,7 +1178,7 @@ static void start_connect(struct connection * c)
SSL_set_connect_state(c->ssl);
if (verbosity >= 4) {
BIO_set_callback(bio, ssl_print_cb);
- BIO_set_callback_arg(bio, bio_err);
+ BIO_set_callback_arg(bio, (void *)bio_err);
}
} else {
c->ssl = NULL;