diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-28 19:13:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-28 19:13:52 +0000 |
commit | c943a659ec0a071e4bab0db30c9e1e0bf306691a (patch) | |
tree | b4e2a6b15f620a342b67473b932193e7612d5007 /libexec/spamd-setup | |
parent | 66b9e1ce77d1a3df02878c6fa9bbe330defbf782 (diff) |
return from main
Diffstat (limited to 'libexec/spamd-setup')
-rw-r--r-- | libexec/spamd-setup/spamd-setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd-setup/spamd-setup.c b/libexec/spamd-setup/spamd-setup.c index 8ea05f0e89a..44d496ea3e2 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.8 2003/03/13 21:20:42 beck Exp $ */ +/* $OpenBSD: spamd-setup.c,v 1.9 2003/04/28 19:13:51 deraadt Exp $ */ /* * Copyright (c) 2003 Bob Beck. All rights reserved. * @@ -777,5 +777,5 @@ main(int argc, char *argv[]) free(cidrs); free(blists[i].bl); } - exit(0); + return (0); } |