| 38 | } |
| 39 | |
| 40 | int parse_opt_expiry_date_cb(const struct option *opt, const char *arg, |
| 41 | int unset) |
| 42 | { |
| 43 | if (unset) |
| 44 | arg = "never"; |
| 45 | if (parse_expiry_date(arg, (timestamp_t *)opt->value)) |
| 46 | die(_("malformed expiration date '%s'"), arg); |
| 47 | return 0; |
| 48 | } |
| 49 | |
| 50 | int parse_opt_color_flag_cb(const struct option *opt, const char *arg, |
| 51 | int unset) |
nothing calls this directly
no test coverage detected