svn commit: r325267 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Wed Nov 1 06:47:00 UTC 2017


Author: mjg
Date: Wed Nov  1 06:46:58 2017
New Revision: 325267
URL: https://svnweb.freebsd.org/changeset/base/325267

Log:
  Fixup r325264, take #2
  
  whack an unused variable

Modified:
  head/sys/kern/kern_loginclass.c

Modified: head/sys/kern/kern_loginclass.c
==============================================================================
--- head/sys/kern/kern_loginclass.c	Wed Nov  1 06:45:41 2017	(r325266)
+++ head/sys/kern/kern_loginclass.c	Wed Nov  1 06:46:58 2017	(r325267)
@@ -131,7 +131,6 @@ struct loginclass *
 loginclass_find(const char *name)
 {
 	struct loginclass *lc, *new_lc;
-	struct ucred *cred;
 
 	if (name[0] == '\0' || strlen(name) >= MAXLOGNAME)
 		return (NULL);


More information about the svn-src-head mailing list