| 325 | */ |
| 326 | |
| 327 | static const char *load_file(cmd_parms *cmd, void *dummy, const char *filename) |
| 328 | { |
| 329 | apr_dso_handle_t *handle; |
| 330 | const char *used_file, *error; |
| 331 | |
| 332 | error = dso_load(cmd, &handle, filename, &used_file); |
| 333 | if (error) |
| 334 | return error; |
| 335 | |
| 336 | ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL, APLOGNO(01576) |
| 337 | "loaded file %s", used_file); |
| 338 | |
| 339 | return NULL; |
| 340 | } |
| 341 | |
| 342 | static module *ap_find_loaded_module_symbol(server_rec *s, const char *modname) |
| 343 | { |
nothing calls this directly
no test coverage detected