| 815 | } |
| 816 | |
| 817 | static int log_server_name(const ap_errorlog_info *info, const char *arg, |
| 818 | char *buf, int buflen) |
| 819 | { |
| 820 | if (info->r) |
| 821 | return cpystrn(buf, ap_get_server_name((request_rec *)info->r), buflen); |
| 822 | |
| 823 | return 0; |
| 824 | } |
| 825 | |
| 826 | static int log_virtual_host(const ap_errorlog_info *info, const char *arg, |
| 827 | char *buf, int buflen) |
nothing calls this directly
no test coverage detected