Re: svn commit: r224150 - head/sbin/fdisk

2011-07-18 Thread Bruce Evans
On Sun, 17 Jul 2011, Ryan Stone wrote: On Sun, Jul 17, 2011 at 7:09 PM, Bruce Evans b...@optusnet.com.au wrote: There was no need to further break the style. Ack. Should have caught that. Will fix. Thanks. @@ -990,7 +990,7 @@ parse_config_line(char *line, CMD *comma ? ? ? ? ? ?if

svn commit: r224150 - head/sbin/fdisk

2011-07-17 Thread Ryan Stone
Author: rstone Date: Sun Jul 17 21:08:16 2011 New Revision: 224150 URL: http://svn.freebsd.org/changeset/base/224150 Log: The MBR uses a 32-bit unsigned integer to store the size of a slice, but fdisk(1) internally uses a signed int. Should a user attempt to specify a slice containing more

Re: svn commit: r224150 - head/sbin/fdisk

2011-07-17 Thread Bruce Evans
On Sun, 17 Jul 2011, Ryan Stone wrote: Log: The MBR uses a 32-bit unsigned integer to store the size of a slice, but fdisk(1) internally uses a signed int. Should a user attempt to specify a slice containing more than 2^31 - 1 sectors, an error will be reported on systems with sizeof(long)

Re: svn commit: r224150 - head/sbin/fdisk

2011-07-17 Thread Ryan Stone
On Sun, Jul 17, 2011 at 7:09 PM, Bruce Evans b...@optusnet.com.au wrote: There was no need to further break the style. Ack. Should have caught that. Will fix. @@ -990,7 +990,7 @@ parse_config_line(char *line, CMD *comma            if (isalpha(*cp))