diff options
-rw-r--r-- | include/http_protocol.h | 8 | ||||
-rw-r--r-- | modules/http/http_protocol.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index 7a6921bd5b..1e4f2ef299 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -265,10 +265,10 @@ API_EXPORT(size_t) ap_send_mmap(apr_mmap_t *mm, request_rec *r, size_t offset, API_EXPORT(ap_method_list_t *) ap_make_method_list(apr_pool_t *p, int nelts); API_EXPORT(void) ap_copy_method_list(ap_method_list_t *dest, ap_method_list_t *src); -API_EXPORT(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, - int mnum), - void *rec, - const ap_method_list_t *ml, ...); +API_EXPORT_NONSTD(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, + int mnum), + void *rec, + const ap_method_list_t *ml, ...); API_EXPORT(void) ap_method_list_vdo(int (*comp) (void *urec, const char *mname, int mnum), void *rec, const ap_method_list_t *ml, diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index e7cc8f0a86..cc208887e3 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1683,10 +1683,10 @@ API_EXPORT(void) ap_copy_method_list(ap_method_list_t *dest, /* * Invoke a callback routine for each method in the specified list. */ -API_EXPORT(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, - int mnum), - void *rec, - const ap_method_list_t *ml, ...) +API_EXPORT_NONSTD(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, + int mnum), + void *rec, + const ap_method_list_t *ml, ...) { va_list vp; va_start(vp, ml); |