svn commit: r293682 - stable/10/usr.sbin/pw

Baptiste Daroussin bapt at FreeBSD.org
Mon Jan 11 19:23:00 UTC 2016


Author: bapt
Date: Mon Jan 11 19:22:58 2016
New Revision: 293682
URL: https://svnweb.freebsd.org/changeset/base/293682

Log:
  MFC: 278899
  
  Regression: fix usershow -7

Modified:
  stable/10/usr.sbin/pw/pw_user.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/pw/pw_user.c
==============================================================================
--- stable/10/usr.sbin/pw/pw_user.c	Mon Jan 11 19:21:20 2016	(r293681)
+++ stable/10/usr.sbin/pw/pw_user.c	Mon Jan 11 19:22:58 2016	(r293682)
@@ -809,7 +809,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