From 43fb93b0da7cfe3421e02e74fc81814732da93ed Mon Sep 17 00:00:00 2001 From: Christian Brueffer Date: Tue, 13 Sep 2011 20:35:34 +0000 Subject: [PATCH] Fix typos in error messages. Found by: kib Approved by: re (kib) MFC after: 1 week --- usr.bin/csup/auth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/csup/auth.c b/usr.bin/csup/auth.c index d690f9b47e87..f24cd00668a9 100644 --- a/usr.bin/csup/auth.c +++ b/usr.bin/csup/auth.c @@ -188,7 +188,7 @@ auth_lookuprecord(char *server, struct srvrecord *auth) error = auth_parsetoken(&line, auth->server, sizeof(auth->server)); if (error != STATUS_SUCCESS) { - lprintf(-1, "%s:%d Missng client name\n", authfile, linenum); + lprintf(-1, "%s:%d Missing client name\n", authfile, linenum); goto close; } /* Skip the rest of this line, it isn't what we are looking for. */ @@ -197,13 +197,13 @@ auth_lookuprecord(char *server, struct srvrecord *auth) error = auth_parsetoken(&line, auth->client, sizeof(auth->client)); if (error != STATUS_SUCCESS) { - lprintf(-1, "%s:%d Missng password\n", authfile, linenum); + lprintf(-1, "%s:%d Missing password\n", authfile, linenum); goto close; } error = auth_parsetoken(&line, auth->password, sizeof(auth->password)); if (error != STATUS_SUCCESS) { - lprintf(-1, "%s:%d Missng comment\n", authfile, linenum); + lprintf(-1, "%s:%d Missing comment\n", authfile, linenum); goto close; } stream_close(s);