summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2013-06-28 13:08:27 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2013-06-28 13:13:37 +0200
commitc12b7eff21237e8bb0a2daf8507d5ccbfe6d7d9b (patch)
tree486a6b1a346e19695a46961ac72753dfaf83e97a
parentdd690a26c49e87af68702cdabdbe2c00b98f2e0c (diff)
downloadeurephia-c12b7eff21237e8bb0a2daf8507d5ccbfe6d7d9b.tar.gz
eurephia-c12b7eff21237e8bb0a2daf8507d5ccbfe6d7d9b.tar.xz
eurephia-c12b7eff21237e8bb0a2daf8507d5ccbfe6d7d9b.zip
eurephia_init: Return with the proper exit code
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net> (cherry picked from commit 9aacd42cf3a4e0877c1d6f770d10a61276ef8a99)
-rw-r--r--utils/eurephia_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/eurephia_init.c b/utils/eurephia_init.c
index e5cbcdc..cf3853c 100644
--- a/utils/eurephia_init.c
+++ b/utils/eurephia_init.c
@@ -776,5 +776,5 @@ int main(int argc, char **argv) {
exit:
eFree_values(ctx, cfg);
eurephiaCTX_destroy(ctx);
- return 0;
+ return rc;
}