Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 May 2013 00:50:02 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: bin/119483: commit references a PR
Message-ID:  <201305170050.r4H0o2UW053122@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/119483; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: bin/119483: commit references a PR
Date: Fri, 17 May 2013 00:41:05 +0000 (UTC)

 Author: eadler
 Date: Fri May 17 00:40:46 2013
 New Revision: 250729
 URL: http://svnweb.freebsd.org/changeset/base/250729
 
 Log:
   MFC r250509:
   	The M_VESA_MODE_MAX is latest valid mode - not the first invalid.
   	Permit its use in vidcontrol -i
   
   PR:		bin/119483
 
 Modified:
   stable/9/usr.sbin/vidcontrol/vidcontrol.c
 Directory Properties:
   stable/9/usr.sbin/vidcontrol/   (props changed)
 
 Modified: stable/9/usr.sbin/vidcontrol/vidcontrol.c
 ==============================================================================
 --- stable/9/usr.sbin/vidcontrol/vidcontrol.c	Fri May 17 00:26:56 2013	(r250728)
 +++ stable/9/usr.sbin/vidcontrol/vidcontrol.c	Fri May 17 00:40:46 2013	(r250729)
 @@ -961,7 +961,7 @@ show_mode_info(void)
  	printf("---------------------------------------"
  	       "---------------------------------------\n");
  
 -	for (mode = 0; mode < M_VESA_MODE_MAX; ++mode) {
 +	for (mode = 0; mode <= M_VESA_MODE_MAX; ++mode) {
  		_info.vi_mode = mode;
  		if (ioctl(0, CONS_MODEINFO, &_info))
  			continue;
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305170050.r4H0o2UW053122>