[BACK]Return to mbr.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / distrib / utils / sysinst

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/distrib/utils/sysinst/Attic/mbr.c between version 1.75 and 1.76

version 1.75, 2006/06/10 14:48:46 version 1.76, 2006/10/04 21:27:28
Line 732  edit_mbr_size(menudesc *m, void *arg)
Line 732  edit_mbr_size(menudesc *m, void *arg)
                         /* Round end to cylinder boundary */                          /* Round end to cylinder boundary */
                         if (sizemult != 1) {                          if (sizemult != 1) {
                                 new *= sizemult;                                  new *= sizemult;
                                 new += ROUNDDOWN(start,current_cylsize);                                  new += rounddown(start, current_cylsize);
                                 new = ROUNDUP(new, current_cylsize);                                  new = roundup(new, current_cylsize);
                                 new -= start;                                  new -= start;
                                 while (new <= 0)                                  while (new <= 0)
                                         new += current_cylsize;                                          new += current_cylsize;

Legend:
Removed from v.1.75  
changed lines
  Added in v.1.76

CVSweb <webmaster@jp.NetBSD.org>