santiago@xxxxxxx writes: > From: Lukas P <luk.puehringer@xxxxxxxxx> Please match this with S-o-b: below. > > Functions that print git object information may require that the > gpg-interface functions be silent. Add a GPG_VERIFY_QUIET to prevent > functions such as `print_signature_buffer` from printing any output and > only return whether signature verification passed or not. > > Signed-off-by: Lukas Puehringer <lukas.puehringer@xxxxxxx> > --- > gpg-interface.c | 3 +++ > gpg-interface.h | 1 + > 2 files changed, 4 insertions(+) > > diff --git a/gpg-interface.c b/gpg-interface.c > index 8672eda..b82bc50 100644 > --- a/gpg-interface.c > +++ b/gpg-interface.c > @@ -88,6 +88,9 @@ int check_signature(const char *payload, size_t plen, const char *signature, > > void print_signature_buffer(const struct signature_check *sigc, unsigned flags) > { > + if (flags & GPG_VERIFY_QUIET) > + return; > + > const char *output = flags & GPG_VERIFY_RAW ? > sigc->gpg_status : sigc->gpg_output; This has only two callsites, which both know what flags they are passing. Doesn't it make more sense to drop this patch (and possibly addition of GPG_VERIFY_QUIET flag as well) and teach them not to call this function in the first place? > diff --git a/gpg-interface.h b/gpg-interface.h > index ea68885..85dc982 100644 > --- a/gpg-interface.h > +++ b/gpg-interface.h > @@ -3,6 +3,7 @@ > > #define GPG_VERIFY_VERBOSE 1 > #define GPG_VERIFY_RAW 2 > +#define GPG_VERIFY_QUIET 4 > > struct signature_check { > char *payload;