diff options
author | Jeff Trawick <trawick@apache.org> | 2009-11-24 21:32:42 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2009-11-24 21:32:42 +0100 |
commit | e2a34108a315de13492e75b471aaf0f7f5cb0a26 (patch) | |
tree | 82aa922efa0eb448fa7a1062803f75dccf0586ce /include | |
parent | fix the "fix" in r883816 (diff) | |
download | apache2-e2a34108a315de13492e75b471aaf0f7f5cb0a26.tar.xz apache2-e2a34108a315de13492e75b471aaf0f7f5cb0a26.zip |
non-static directive parsers should be AP_DECLARE_NONSTD()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@883860 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/http_vhost.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/http_vhost.h b/include/http_vhost.h index c157c216eb..ceacb0057f 100644 --- a/include/http_vhost.h +++ b/include/http_vhost.h @@ -58,8 +58,9 @@ const char *ap_parse_vhost_addrs(apr_pool_t *p, const char *hostname, server_rec * @param dummy NOT USED * @param arg a host of the form "<address>[:port]" */ -const char *ap_set_name_virtual_host (cmd_parms *cmd, void *dummy, - const char *arg); +AP_DECLARE_NONSTD(const char *)ap_set_name_virtual_host(cmd_parms *cmd, + void *dummy, + const char *arg); /** * Callback function for every Name Based Virtual Host. |