| 1170 | */ |
| 1171 | |
| 1172 | static const char *ltox(apr_pool_t *p, unsigned long num) |
| 1173 | { |
| 1174 | if (num != 0) { |
| 1175 | return apr_psprintf(p, "%lx", num); |
| 1176 | } |
| 1177 | else { |
| 1178 | return ""; |
| 1179 | } |
| 1180 | } |
| 1181 | |
| 1182 | static void note_digest_auth_failure(request_rec *r, |
| 1183 | const digest_config_rec *conf, |
no outgoing calls
no test coverage detected