aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlacme-accountd4
1 files changed, 2 insertions, 2 deletions
diff --git a/lacme-accountd b/lacme-accountd
index 9ed41c4..9909cb8 100755
--- a/lacme-accountd
+++ b/lacme-accountd
@@ -79,13 +79,13 @@ sub info(@) { logmsg(all => @_); }
sub error(@) {
my @msg = ("Error: ", @_);
info(@msg);
- die(@msg, "\n");
+ exit 255;
}
sub panic(@) {
my @loc = caller;
my @msg = (@_, " at line $loc[2] in $loc[1]");
info(@msg);
- die(@msg, "\n");
+ exit 255;
}
sub env_fallback($$) {