diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-10-23 16:00:29 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-10-23 16:00:29 +0000 |
commit | b55d954b9138038c5ba9e60b2d19ccc6aef5d45f (patch) | |
tree | 5d2dde701f64275919653e58bc86ddd65653dba4 /usr.sbin | |
parent | 747e2eb7afb339d1c587f0ca67e6d172fbe6034d (diff) |
errx -> err since the errno is set.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 922db1c45b2..65c92bde8fa 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.147 2009/09/15 09:45:12 sthen Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.148 2009/10/23 16:00:28 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -304,13 +304,13 @@ main(int argc, char *argv[]) while (!done) { if ((n = imsg_read(ibuf)) == -1) - errx(1, "imsg_read error"); + err(1, "imsg_read error"); if (n == 0) errx(1, "pipe closed"); while (!done) { if ((n = imsg_get(ibuf, &imsg)) == -1) - errx(1, "imsg_get error"); + err(1, "imsg_get error"); if (n == 0) break; |