[Patch] cygcheck: Allow for larger drives. ``Used'', not ``Free''.

2004-10-20 Thread Bas van Gompel
Hi,

Another (trivial, IMO) patch:

I noticed the format for ``Size'' in the drive-list is 5 digits long.
This overflows for drives = 100 gigabytes. This patch allows for drives
 10 terabytes. While at this, I spotted, in the help-text, where the
title reads ``Free'', it should read ``Used''.


ChangeLog-entry:

2004-10-20  Bas van Gompel  [EMAIL PROTECTED]

* cygcheck.cc (dump_sysinfo): Allow for larger drives in drive-list.
Change ``Used'' to ``Free'' in helptext-title for drive-list.


--- src/winsup/utils/cygcheck.cc18 Oct 2004 10:25:38 -  1.53
+++ src/winsup/utils/cygcheck.cc20 Oct 2004 15:25:16 -
@@ -1064,7 +1064,7 @@ dump_sysinfo ()
   if (givehelp)
 {
   printf (Listing available drives...\n);
-  printf (Drv TypeSize   Free Flags  Name\n);
+  printf (Drv Type  Size   Used Flags  Name\n);
 }
   int prev_mode =
 SetErrorMode (SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
@@ -1135,9 +1135,9 @@ dump_sysinfo ()
 
   printf (%.2s  %s %-6s , drive, drive_type, fsname);
   if (capacity_mb = 0)
-   printf (%5dMb %3d%% , (int) capacity_mb, (int) percent_full);
+   printf (%7dMb %3d%% , (int) capacity_mb, (int) percent_full);
   else
-   printf (  N/AN/A );
+   printf (N/AN/A );
   printf (%s %s %s %s %s %s  %s\n,
  flags  FS_CASE_IS_PRESERVED ? CP :   ,
  flags  FS_CASE_SENSITIVE ? CS :   ,


BTW: Should not dump_sysinfo be split up into a number of smaller
functions?

L8r,

Buzz.
-- 
  ) |  | ---/ ---/  Yes, this | This message consists of true | I do not
--  |  |   //   really is |   and false bits entirely.| mail for
  ) |  |  //a 72 by 4 +---+ any1 but
--  \--| /--- /---  .sigfile. |   |perl -pe s.u(z)\1.as.| me. 4^re


Re: [Patch] cygcheck: Allow for larger drives. ``Used'', not ``Free''.

2004-10-20 Thread Christopher Faylor
On Wed, Oct 20, 2004 at 10:20:12PM +0200, Bas van Gompel wrote:
2004-10-20  Bas van Gompel  [EMAIL PROTECTED]

   * cygcheck.cc (dump_sysinfo): Allow for larger drives in drive-list.
   Change ``Used'' to ``Free'' in helptext-title for drive-list.

Applied.

Thanks.

cgf