diff options
author | tb@openbsd.org | 2015-11-20 09:04:01 +0000 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-05-24 12:33:55 +0200 |
commit | 9adffe8cb5cfcc75bea1e621b7ec574e5818f38c (patch) | |
tree | 0e933b02ae8221a2385e13c4e224b9d4065c1ff4 /slowcgi.c | |
parent | f3fe4ef0c9d8ed49e85673c9b97cae1d3257bc89 (diff) | |
download | slowcgi-9adffe8cb5cfcc75bea1e621b7ec574e5818f38c.tar.gz |
typo in error message: to -> too
ok florian@
Diffstat (limited to '')
-rw-r--r-- | slowcgi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |