| 861 | } |
| 862 | |
| 863 | static int log_note(const ap_errorlog_info *info, const char *arg, |
| 864 | char *buf, int buflen) |
| 865 | { |
| 866 | /* XXX: maybe escaping the entry is not necessary for notes? */ |
| 867 | if (info->r) |
| 868 | return log_table_entry(info->r->notes, arg, buf, buflen); |
| 869 | |
| 870 | return 0; |
| 871 | } |
| 872 | |
| 873 | static int log_env_var(const ap_errorlog_info *info, const char *arg, |
| 874 | char *buf, int buflen) |
nothing calls this directly
no test coverage detected