From 80c8813bc375bb5af4ed8b5d77bf23774d21d23d Mon Sep 17 00:00:00 2001 From: jsg Date: Thu, 8 Oct 2015 09:32:13 +0000 Subject: [PATCH] fix a typo; from Carlin Bingham --- usr.sbin/httpd/server_fcgi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/httpd/server_fcgi.c b/usr.sbin/httpd/server_fcgi.c index e7d9747059b..9d4d84a765a 100644 --- a/usr.sbin/httpd/server_fcgi.c +++ b/usr.sbin/httpd/server_fcgi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server_fcgi.c,v 1.64 2015/08/20 13:00:23 reyk Exp $ */ +/* $OpenBSD: server_fcgi.c,v 1.65 2015/10/08 09:32:13 jsg Exp $ */ /* * Copyright (c) 2014 Florian Obser @@ -130,7 +130,7 @@ server_fcgi(struct httpd *env, struct client *clt) len = strlcpy(sun.sun_path, srv_conf->socket, sizeof(sun.sun_path)); if (len >= sizeof(sun.sun_path)) { - errstr = "socket path to long"; + errstr = "socket path too long"; goto fail; } sun.sun_len = len; -- 2.20.1