summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpctl
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2011-09-21 08:52:56 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2011-09-21 08:52:56 +0000
commit2b21a27cbc1f88781c09bae3c4fdf6722e1650d9 (patch)
tree0b1aa04e6d1de8ec75e59a4a9e31cb1fc20c8a82 /usr.sbin/bgpctl
parent6f069f58af8e540595c27cc760347db8d27a3630 (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.c8
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);
+}