| 1480 | */ |
| 1481 | |
| 1482 | static void |
| 1483 | cups_set_digestoptions( |
| 1484 | _cups_client_conf_t *cc, /* I - client.conf values */ |
| 1485 | const char *value) /* I - Value */ |
| 1486 | { |
| 1487 | if (!_cups_strcasecmp(value, "DenyMD5")) |
| 1488 | cc->digestoptions = _CUPS_DIGESTOPTIONS_DENYMD5; |
| 1489 | else if (!_cups_strcasecmp(value, "None")) |
| 1490 | cc->digestoptions = _CUPS_DIGESTOPTIONS_NONE; |
| 1491 | } |
| 1492 | |
| 1493 | |
| 1494 | /* |
no test coverage detected