diff options
author | Ryan Bloom <rbb@apache.org> | 1999-10-15 14:20:30 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-10-15 14:20:30 +0000 |
commit | eaa7c368d5b63f2c26fb9e1c8fd4febc934a8b49 (patch) | |
tree | a2b719ca7751b9ea01615f973fe8ae10a286ebd0 /include/apr_network_io.h | |
parent | 8fd782f025c6a91f429141eba8480bc1e61554e2 (diff) | |
download | apr-eaa7c368d5b63f2c26fb9e1c8fd4febc934a8b49.tar.gz |
Fix a bug in the logic to set/get userdata from ALL apr types. I have
known about this bug for a while, but I am just now finding the time to
fix it. :)
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59352 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_network_io.h')
-rw-r--r-- | include/apr_network_io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_network_io.h b/include/apr_network_io.h index 2a7b3b103..235ffc1eb 100644 --- a/include/apr_network_io.h +++ b/include/apr_network_io.h @@ -115,7 +115,7 @@ ap_status_t ap_connect(ap_socket_t *, char *); ap_status_t ap_get_remote_hostname(char **, ap_socket_t *); ap_status_t ap_gethostname(char *, int, ap_context_t *); -ap_status_t ap_get_socketdata(void *, char *, ap_socket_t *); +ap_status_t ap_get_socketdata(void **, char *, ap_socket_t *); ap_status_t ap_set_socketdata(ap_socket_t *, void *, char *, ap_status_t (*cleanup) (void*)); |