svn commit: r201664 - user/ed/utmpx/lib/libc/gen

Ed Schouten ed at FreeBSD.org
Wed Jan 6 20:08:20 UTC 2010


Author: ed
Date: Wed Jan  6 20:08:20 2010
New Revision: 201664
URL: http://svn.freebsd.org/changeset/base/201664

Log:
  Remove a " * " from the comment, caused by vim(1) line wrapping.

Modified:
  user/ed/utmpx/lib/libc/gen/pututxline.c

Modified: user/ed/utmpx/lib/libc/gen/pututxline.c
==============================================================================
--- user/ed/utmpx/lib/libc/gen/pututxline.c	Wed Jan  6 20:07:18 2010	(r201663)
+++ user/ed/utmpx/lib/libc/gen/pututxline.c	Wed Jan  6 20:08:20 2010	(r201664)
@@ -202,11 +202,11 @@ utx_lastlogin_add(const struct futx *fu)
 		if (strncmp(fu->fu_user, fe.fu_user, sizeof fe.fu_user) != 0)
 			continue;
 
-		/* Prevent lowering of the time value. */
+		/* Prevent lowering the time value. */
 		if (fu->fu_tv <= fe.fu_tv)
 			goto done;
 		
-		/* Found a previous lastlogin entry for this * user. */
+		/* Found a previous lastlogin entry for this user. */
 		lseek(fd, -sizeof fe, SEEK_CUR);
 		break;
 	}


More information about the svn-src-user mailing list