diff options
author | Christian Brueffer <brueffer@FreeBSD.org> | 2011-09-13 20:35:34 +0000 |
---|---|---|
committer | Christian Brueffer <brueffer@FreeBSD.org> | 2011-09-13 20:35:34 +0000 |
commit | 43fb93b0da7cfe3421e02e74fc81814732da93ed (patch) | |
tree | 76c551f534db83528b863e1101989e77f649f707 /usr.bin | |
parent | 51ad0033d6c5632f251e74baf490194cfc47cd62 (diff) | |
download | src-43fb93b0da7cfe3421e02e74fc81814732da93ed.tar.gz src-43fb93b0da7cfe3421e02e74fc81814732da93ed.zip |
Fix typos in error messages.
Found by: kib
Approved by: re (kib)
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=225536
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/csup/auth.c | 6 |
1 files 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); |