diff options
author | Jeff King <peff@peff.net> | 2018-06-28 18:05:09 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-03 09:35:12 -0700 |
commit | 63583203df51c645aa2bf2988bbdfa3d308ef517 (patch) | |
tree | 4dc97a476030c3b5e5bb75d167b641f87a0ab255 /config.h | |
parent | 66f9722882993f60be656afaae4c5c9ac92957e9 (diff) | |
download | git-63583203df51c645aa2bf2988bbdfa3d308ef517.tar.gz |
config: add CONFIG_ERROR_SILENT handler
We can currently die() or error(), but there's not yet any
way for callers to ask us just to quietly return an error.
Let's give them one.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -58,6 +58,7 @@ struct config_options { CONFIG_ERROR_UNSET = 0, /* use source-specific default */ CONFIG_ERROR_DIE, /* die() on error */ CONFIG_ERROR_ERROR, /* error() on error, return -1 */ + CONFIG_ERROR_SILENT, /* return -1 */ } error_action; }; |