Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Sep 2011 20:35:34 +0000 (UTC)
From:      Christian Brueffer <brueffer@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r225536 - head/usr.bin/csup
Message-ID:  <201109132035.p8DKZYdN095497@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brueffer
Date: Tue Sep 13 20:35:34 2011
New Revision: 225536
URL: http://svn.freebsd.org/changeset/base/225536

Log:
  Fix typos in error messages.
  
  Found by:	kib
  Approved by:	re (kib)
  MFC after:	1 week

Modified:
  head/usr.bin/csup/auth.c

Modified: head/usr.bin/csup/auth.c
==============================================================================
--- head/usr.bin/csup/auth.c	Tue Sep 13 20:33:27 2011	(r225535)
+++ head/usr.bin/csup/auth.c	Tue Sep 13 20:35:34 2011	(r225536)
@@ -188,7 +188,7 @@ auth_lookuprecord(char *server, struct s
 		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 s
 		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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201109132035.p8DKZYdN095497>