svn commit: r281581 - head/usr.sbin/vidcontrol

Ed Maste emaste at FreeBSD.org
Thu Apr 16 01:47:07 UTC 2015


Author: emaste
Date: Thu Apr 16 01:47:05 2015
New Revision: 281581
URL: https://svnweb.freebsd.org/changeset/base/281581

Log:
  vidcontrol: make size argument optional again for syscons
  
  r273544 changed the -f option allow no arguments in vt mode (used to
  reset the font back to the default), but broke the optionality of the
  size argument for syscons. Drop the required argument from syscons'
  optstring for -f so the optional argument handler works the same way
  for both syscons and vt.
  
  Reported by:	bde
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/vidcontrol/vidcontrol.c

Modified: head/usr.sbin/vidcontrol/vidcontrol.c
==============================================================================
--- head/usr.sbin/vidcontrol/vidcontrol.c	Thu Apr 16 00:44:59 2015	(r281580)
+++ head/usr.sbin/vidcontrol/vidcontrol.c	Thu Apr 16 01:47:05 2015	(r281581)
@@ -1343,7 +1343,7 @@ main(int argc, char **argv)
 	if (vt4_mode)
 		opts = "b:Cc:fg:h:Hi:M:m:pPr:S:s:T:t:x";
 	else
-		opts = "b:Cc:df:g:h:Hi:l:LM:m:pPr:S:s:T:t:x";
+		opts = "b:Cc:dfg:h:Hi:l:LM:m:pPr:S:s:T:t:x";
 
 	while ((opt = getopt(argc, argv, opts)) != -1)
 		switch(opt) {


More information about the svn-src-head mailing list