From: Michael Neumann Date: Tue, 13 Jan 2015 18:13:49 +0000 (+0100) Subject: sshlockout - fix typo X-Git-Url: https://gitweb.dragonflybsd.org/~nant/dragonfly.git/commitdiff_plain/6ea1a10744b0b7d85af8da8f2a21612a2c85cfa4 sshlockout - fix typo --- 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; } }