1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

gpgconf: Exit with failure if --launch fails.

* tools/gpgconf-comp.c (gc_component_launch): Return an error code.
* tools/gpgconf.c (main): Exit if launch failed.
--
GnuPG-bug-id: 1791
This commit is contained in:
Werner Koch 2014-12-17 10:36:24 +01:00
parent b1b1923b06
commit 5cb6df8996
3 changed files with 13 additions and 4 deletions

View file

@ -281,9 +281,17 @@ main (int argc, char **argv)
exit (1);
}
else if (cmd == aLaunch)
gc_component_launch (idx);
{
if (gc_component_launch (idx))
exit (1);
}
else
gc_component_kill (idx);
{
/* We don't error out if the kill failed because this
command should do nothing if the component is not
running. */
gc_component_kill (idx);
}
}
break;