* extend the implementation of the %{..}x log function * (there can be more functions) */
| 1232 | * (there can be more functions) |
| 1233 | */ |
| 1234 | static const char *ssl_var_log_handler_x(request_rec *r, char *a) |
| 1235 | { |
| 1236 | char *result; |
| 1237 | |
| 1238 | result = ssl_var_lookup(r->pool, r->server, r->connection, r, a); |
| 1239 | if (result) { |
| 1240 | result = *result ? ap_escape_logitem(r->pool, result) : NULL; |
| 1241 | } |
| 1242 | return result; |
| 1243 | } |
| 1244 | |
| 1245 |
nothing calls this directly
no test coverage detected