summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2003-03-10 19:35:21 +0000
committerderaadt <deraadt@openbsd.org>2003-03-10 19:35:21 +0000
commit0e6192ec026a9beab63f752d316e5f2c3e5997e9 (patch)
tree238fcf3d748566a9bf52eb65e68eecf95b339a9a
parentthese pages all had bad section numbers in the .Xr's; (diff)
downloadwireguard-openbsd-0e6192ec026a9beab63f752d316e5f2c3e5997e9.tar.xz
wireguard-openbsd-0e6192ec026a9beab63f752d316e5f2c3e5997e9.zip
fix exit code, stupid bob, spotted by lebel
-rw-r--r--libexec/spamd-setup/spamd-setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd-setup/spamd-setup.c b/libexec/spamd-setup/spamd-setup.c
index 9a1e5b60e4a..a0b184e99f4 100644
--- a/libexec/spamd-setup/spamd-setup.c
+++ b/libexec/spamd-setup/spamd-setup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: spamd-setup.c,v 1.5 2003/03/09 19:22:26 beck Exp $ */
+/* $OpenBSD: spamd-setup.c,v 1.6 2003/03/10 19:35:21 deraadt Exp $ */
/*
* Copyright (c) 2003 Bob Beck. All rights reserved.
*
@@ -776,5 +776,5 @@ main(int argc, char *argv[])
free(cidrs);
free(blists[i].bl);
}
- exit(1);
+ exit(0);
}