diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-09-21 08:52:56 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-09-21 08:52:56 +0000 |
commit | 2b21a27cbc1f88781c09bae3c4fdf6722e1650d9 (patch) | |
tree | 0b1aa04e6d1de8ec75e59a4a9e31cb1fc20c8a82 /usr.sbin/bgpctl | |
parent | 6f069f58af8e540595c27cc760347db8d27a3630 (diff) |
Unbreak the tree. I forgot to add a fatalx() stub to bgpctl.
Diffstat (limited to 'usr.sbin/bgpctl')
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index cd34c92bb38..e1256a21cf1 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.161 2010/09/02 14:03:21 sobrado Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.162 2011/09/21 08:52:55 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -1522,3 +1522,9 @@ fatal(const char *emsg) { err(1, emsg); } + +void +fatalx(const char *emsg) +{ + errx(1, emsg); +} |