summaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-06-26 14:14:56 -0400
committerNick Mathewson <nickm@torproject.org>2017-06-26 14:14:56 -0400
commitd72cfb259dfc83fe88c8589d4c1302a252823182 (patch)
tree393557b5e9f925c38958f22e800c742b6dd53e21 /src/or/main.c
parent8f59661dbaa25b54a9fad8a8dc5322a7778a7fc7 (diff)
downloadtor-d72cfb259dfc83fe88c8589d4c1302a252823182.tar.gz
tor-d72cfb259dfc83fe88c8589d4c1302a252823182.zip
Patch for 22720 from huyvq: exit(1) more often
See changes file for full details.
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 9699c8d381..cb24fd18c8 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1556,7 +1556,7 @@ check_ed_keys_callback(time_t now, const or_options_t *options)
generate_ed_link_cert(options, now, new_signing_key > 0)) {
log_err(LD_OR, "Unable to update Ed25519 keys! Exiting.");
tor_cleanup();
- exit(0);
+ exit(1);
}
}
return 30;
@@ -3168,7 +3168,7 @@ try_locking(const or_options_t *options, int err_if_locked)
r = try_locking(options, 0);
if (r<0) {
log_err(LD_GENERAL, "No, it's still there. Exiting.");
- exit(0);
+ exit(1);
}
return r;
}