From 6ea1a10744b0b7d85af8da8f2a21612a2c85cfa4 Mon Sep 17 00:00:00 2001 From: Michael Neumann Date: Tue, 13 Jan 2015 19:13:49 +0100 Subject: [PATCH] sshlockout - fix typo --- usr.sbin/sshlockout/sshlockout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/sshlockout/sshlockout.c b/usr.sbin/sshlockout/sshlockout.c index 77e85f408c..ccd8082279 100644 --- a/usr.sbin/sshlockout/sshlockout.c +++ b/usr.sbin/sshlockout/sshlockout.c @@ -245,7 +245,7 @@ checkline(char *buf) */ if ((str = strstr(buf, "Received disconnect from ")) != NULL && strstr(buf, "[preauth]") != NULL) { - checkip(str + 25, "preauth", "an inalid user"); + checkip(str + 25, "preauth", "an invalid user"); return; } } -- 2.11.4.GIT