svn commit: r287799 - head/usr.sbin/pw

Baptiste Daroussin bapt at FreeBSD.org
Mon Sep 14 19:23:01 UTC 2015


Author: bapt
Date: Mon Sep 14 19:23:00 2015
New Revision: 287799
URL: https://svnweb.freebsd.org/changeset/base/287799

Log:
  Regression: fix usershow -7
  
  Submitted by:	Dan McGregor (via IRC)
  MFC after:	2 days

Modified:
  head/usr.sbin/pw/pw_user.c

Modified: head/usr.sbin/pw/pw_user.c
==============================================================================
--- head/usr.sbin/pw/pw_user.c	Mon Sep 14 19:17:25 2015	(r287798)
+++ head/usr.sbin/pw/pw_user.c	Mon Sep 14 19:23:00 2015	(r287799)
@@ -804,7 +804,7 @@ pw_user_show(int argc, char **argv, char
 		case 'a':
 			all = true;
 			break;
-		case 7:
+		case '7':
 			v7 = true;
 			break;
 		}


More information about the svn-src-all mailing list