diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-12-26 20:52:13 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-12-26 20:52:13 +0100 |
commit | 7bf68b0b617fb3ffa86f38fe06a49786883037f4 (patch) | |
tree | 797c86c0f24195555d4cd520a2a9c92c852be55b /src/blogc-git-receiver/post-receive.c | |
parent | 509af4c66c0b6287ba281a2d1f01d69450f6109c (diff) | |
download | blogc-7bf68b0b617fb3ffa86f38fe06a49786883037f4.tar.gz blogc-7bf68b0b617fb3ffa86f38fe06a49786883037f4.tar.bz2 blogc-7bf68b0b617fb3ffa86f38fe06a49786883037f4.zip |
*: binaries should always return 3 on errors, for consistency.
We used to return 1 or 2 in case of errors, with no special meaning,
other than "something is wrong", but these codes are reserved. Now we
always return 3.
Diffstat (limited to 'src/blogc-git-receiver/post-receive.c')
-rw-r--r-- | src/blogc-git-receiver/post-receive.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blogc-git-receiver/post-receive.c b/src/blogc-git-receiver/post-receive.c index 415cb0c..8ed133a 100644 --- a/src/blogc-git-receiver/post-receive.c +++ b/src/blogc-git-receiver/post-receive.c @@ -54,14 +54,14 @@ bgr_post_receive_hook(int argc, char *argv[]) char *real_hooks_dir = realpath(hooks_dir, NULL); if (real_hooks_dir == NULL) { fprintf(stderr, "error: failed to guess repository root.\n"); - return 1; + return 3; } char *repo_path = bc_strdup(dirname(real_hooks_dir)); free(real_hooks_dir); if (0 != chdir(repo_path)) { fprintf(stderr, "error: failed to change to repository root\n"); - rv = 1; + rv = 3; goto cleanup; } |