* Like sanitize_client, but we also perform any canonicalization * to make life easier on the admin. */
| 576 | * to make life easier on the admin. |
| 577 | */ |
| 578 | static void canonicalize_client(struct strbuf *out, const char *in) |
| 579 | { |
| 580 | sanitize_client(out, in); |
| 581 | strbuf_tolower(out); |
| 582 | } |
| 583 | |
| 584 | /* |
| 585 | * Read the host as supplied by the client connection. |
no test coverage detected