| 586 | } |
| 587 | |
| 588 | static int cpystrn(char *buf, const char *arg, int buflen) |
| 589 | { |
| 590 | char *end; |
| 591 | if (!arg) |
| 592 | return 0; |
| 593 | end = apr_cpystrn(buf, arg, buflen); |
| 594 | return end - buf; |
| 595 | } |
| 596 | |
| 597 | |
| 598 | static int log_remote_address(const ap_errorlog_info *info, const char *arg, |
no outgoing calls
no test coverage detected