diff options
author | Miloslav Trmač <mitr@redhat.com> | 2013-04-20 01:22:58 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2013-05-13 17:41:37 +0200 |
commit | fcc9839608dc757e7630a40635560c2648598c0e (patch) | |
tree | da31cbe83f85ce423ac54b509ea1cd6c3ee406f0 /src/programs | |
parent | 40b10fd9e7d0c816cc84ec188f417c6443eec844 (diff) | |
download | polkit-fcc9839608dc757e7630a40635560c2648598c0e.tar.gz |
Exit pkaction with status 0 on success
https://bugs.freedesktop.org/show_bug.cgi?id=29936
Diffstat (limited to 'src/programs')
-rw-r--r-- | src/programs/pkaction.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/programs/pkaction.c b/src/programs/pkaction.c index ad68659..f17a7dc 100644 --- a/src/programs/pkaction.c +++ b/src/programs/pkaction.c @@ -207,6 +207,8 @@ main (int argc, char *argv[]) } } + ret = 0; + out: g_list_foreach (actions, (GFunc) g_object_unref, NULL); g_list_free (actions); |