[BACK]Return to cd9660_util.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / fs / cd9660

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

Diff for /src/sys/fs/cd9660/cd9660_util.c between version 1.6 and 1.6.4.1

version 1.6, 2005/12/11 12:24:25 version 1.6.4.1, 2006/09/09 02:56:56
Line 123  isofncmp(fn, fnlen, isofn, isolen, jolie
Line 123  isofncmp(fn, fnlen, isofn, isolen, jolie
                                 break;                                  break;
                         }                          }
                         fn++;                          fn++;
                         for (i = 0; --fnlen >= 0; i = i * 10 + *fn++ - '0') {                          for (i = 0; fnlen-- != 0; i = i * 10 + *fn++ - '0') {
                                 if (*fn < '0' || *fn > '9') {                                  if (*fn < '0' || *fn > '9') {
                                         return -1;                                          return -1;
                                 }                                  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.6.4.1

CVSweb <webmaster@jp.NetBSD.org>