diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/gpg-error.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2004-04-08 Moritz Schulte <[email protected]> + + * src/gpg-error.c (main): Return zero on success. + 2004-03-09 Marcus Brinkmann <[email protected]> * libgpg-error.spec.in (%files): Add gpg-error. Submitted by diff --git a/src/gpg-error.c b/src/gpg-error.c index 08d4530..fbb596e 100644 --- a/src/gpg-error.c +++ b/src/gpg-error.c @@ -257,4 +257,6 @@ main (int argc, char *argv[]) argv[0], argv[i]); i++; } + + exit (0); } |