diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-27 21:26:53 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-27 21:26:53 +0000 |
commit | bddbf875e754fd2211fed79126b949958f443537 (patch) | |
tree | 1380acb4a131a3767418cb2ab7f6329ac3c6c27d | |
parent | 5e0a76975d6acae6580dd13f1d0ec89b7c09d023 (diff) |
missing exit() at end of main
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 0fa9710eb73..032857b89e6 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.36 2004/01/27 16:50:20 henning Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.37 2004/01/27 21:26:52 henning Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -211,6 +211,8 @@ main(int argc, char *argv[]) } } close(fd); + + exit (0); } void |