Changeset 1877 for trunk/dll/comp.c
- Timestamp:
- Oct 11, 2015, 11:43:27 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/comp.c
r1836 r1877 249 249 if (fp) { 250 250 fprintf(fp, "\"%s\"\n", sf->dirname); 251 //DbgMsg(pszSrcFile, __LINE__, "recurse %i", sf->recurse);252 251 SnapShot(sf->dirname, fp, sf->recurse); 253 252 fclose(fp); … … 1663 1662 FillDirList(cmp->leftdir, lenl, cmp->includesubdirs, 1664 1663 &filesl, &cmp->cmp->totalleft, &numallocl); 1665 1666 1664 if (filesl) 1667 1665 qsort(filesl, cmp->cmp->totalleft, sizeof(CHAR *), CompNames); 1668 1669 1666 // Build list of all files in right directory 1670 //DbgMsg(pszSrcFile, __LINE__, "list file %s", cmp->rightlist);1671 1667 if (!*cmp->rightlist) { 1672 1668 if (fForceLower) … … 1730 1726 if (cmp->rightdir[strlen(cmp->rightdir) - 1] != '\\') 1731 1727 lenr++; 1732 //DbgMsg(pszSrcFile, __LINE__, "end of file %i", feof(fp));1733 1728 while (!feof(fp)) { 1734 1729 if (!xfgets_bstripcr … … 1751 1746 if (p) { 1752 1747 p++; 1753 //DbgMsg(pszSrcFile, __LINE__, "DS %ul comma %ul", strchr(p, '/') ? strchr(p, '/') : strchr(p, DateSeparator[0]), strchr(p, ','));1754 1748 if (((strchr(p, '/') ? strchr(p, '/') : strchr(p, DateSeparator[0])) - strchr(p, ',')) > 5) { 1755 1749 CHAR szTemp[30]; … … 3226 3220 strcpy(sf->dirname, cmp->rightdir); 3227 3221 sf->recurse = WinQueryButtonCheckstate(hwnd, COMP_INCLUDESUBDIRS); 3228 //DbgMsg(pszSrcFile, __LINE__, "recurse %i %i", sf->recurse, cmp->includesubdirs); 3222 3229 3223 if (xbeginthread(StartSnapThread, 3230 3224 65536,
Note:
See TracChangeset
for help on using the changeset viewer.