diff options
author | tb <tb@cvs.openbsd.org> | 2015-11-20 09:04:02 +0000 |
---|---|---|
committer | tb <tb@cvs.openbsd.org> | 2015-11-20 09:04:02 +0000 |
commit | 88c648874212245ca4b54347adedaf3117215f94 (patch) | |
tree | b3317dd815da81470971a31b0e8e8007414bb426 /usr.sbin/slowcgi/slowcgi.c | |
parent | 848d68356882b461aae39e982dc43a9ad2a29273 (diff) |
typo in error message: to -> too
ok florian@
Diffstat (limited to 'usr.sbin/slowcgi/slowcgi.c')
-rw-r--r-- | usr.sbin/slowcgi/slowcgi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/slowcgi/slowcgi.c b/usr.sbin/slowcgi/slowcgi.c index 5bf8eb61767..1c9f814825d 100644 --- a/usr.sbin/slowcgi/slowcgi.c +++ b/usr.sbin/slowcgi/slowcgi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: slowcgi.c,v 1.47 2015/11/05 19:15:22 florian Exp $ */ +/* $OpenBSD: slowcgi.c,v 1.48 2015/11/20 09:04:01 tb Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> * Copyright (c) 2013 Florian Obser <florian@openbsd.org> @@ -377,7 +377,7 @@ slowcgi_listen(char *path, struct passwd *pw) sun.sun_family = AF_UNIX; if (strlcpy(sun.sun_path, path, sizeof(sun.sun_path)) >= sizeof(sun.sun_path)) - lerrx(1, "socket path to long"); + lerrx(1, "socket path too long"); if (unlink(path) == -1) if (errno != ENOENT) |