diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2014-07-13 21:46:26 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2014-07-13 21:46:26 +0000 |
commit | 5de073de6363ea05770813e2d34dfc69b7472560 (patch) | |
tree | 1254bcefc6b049a3a0bd54a6f8c3befb2606b3df /usr.sbin/slowcgi/slowcgi.c | |
parent | 809a8365f1adffd47300b1f3762210e144f00b92 (diff) |
Use lerrx instead of errx since the logging subsystem is already initialized.
OK florian@
Diffstat (limited to 'usr.sbin/slowcgi/slowcgi.c')
-rw-r--r-- | usr.sbin/slowcgi/slowcgi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/slowcgi/slowcgi.c b/usr.sbin/slowcgi/slowcgi.c index 769df0361b5..7e66d16bc4f 100644 --- a/usr.sbin/slowcgi/slowcgi.c +++ b/usr.sbin/slowcgi/slowcgi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: slowcgi.c,v 1.33 2014/06/10 14:38:27 florian Exp $ */ +/* $OpenBSD: slowcgi.c,v 1.34 2014/07/13 21:46:25 claudio Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> * Copyright (c) 2013 Florian Obser <florian@openbsd.org> @@ -311,14 +311,14 @@ main(int argc, char *argv[]) pw = getpwnam(SLOWCGI_USER); if (pw == NULL) - errx(1, "no %s user", SLOWCGI_USER); + lerrx(1, "no %s user", SLOWCGI_USER); slowcgi_listen(fcgi_socket, pw); lwarnx("slowcgi_user: %s", slowcgi_user); pw = getpwnam(slowcgi_user); if (pw == NULL) - errx(1, "no %s user", slowcgi_user); + lerrx(1, "no %s user", slowcgi_user); if (chrootpath == NULL) chrootpath = pw->pw_dir; |