| 1329 | } |
| 1330 | |
| 1331 | int git_config_expiry_date(timestamp_t *timestamp, const char *var, const char *value) |
| 1332 | { |
| 1333 | if (!value) |
| 1334 | return config_error_nonbool(var); |
| 1335 | if (parse_expiry_date(value, timestamp)) |
| 1336 | return error(_("'%s' for '%s' is not a valid timestamp"), |
| 1337 | value, var); |
| 1338 | return 0; |
| 1339 | } |
| 1340 | |
| 1341 | int git_config_color(char *dest, const char *var, const char *value) |
| 1342 | { |
no test coverage detected