Changeset 57926 in vbox for trunk/src/VBox/Runtime/common/checksum/manifest2.cpp
- Timestamp:
- Sep 28, 2015 2:05:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/manifest2.cpp
r57358 r57926 135 135 const char * const *papszIgnoreEntries; 136 136 /** Name of attributes to ignore. */ 137 const char * const *papszIgnoreAttr ;137 const char * const *papszIgnoreAttrs; 138 138 /** Flags governing the comparision. */ 139 139 uint32_t fFlags; … … 350 350 * Ignore this entry? 351 351 */ 352 char const * const *ppsz = pEquals->papszIgnoreAttr ;352 char const * const *ppsz = pEquals->papszIgnoreAttrs; 353 353 if (ppsz) 354 354 { … … 425 425 * Ignore this entry? 426 426 */ 427 char const * const *ppsz = pEquals->papszIgnoreAttr ;427 char const * const *ppsz = pEquals->papszIgnoreAttrs; 428 428 if (ppsz) 429 429 { … … 571 571 572 572 RTDECL(int) RTManifestEqualsEx(RTMANIFEST hManifest1, RTMANIFEST hManifest2, const char * const *papszIgnoreEntries, 573 const char * const *papszIgnoreAttr , uint32_t fFlags, char *pszError, size_t cbError)573 const char * const *papszIgnoreAttrs, uint32_t fFlags, char *pszError, size_t cbError) 574 574 { 575 575 /* … … 614 614 Equals.fFlags = fFlags; 615 615 Equals.papszIgnoreEntries = papszIgnoreEntries; 616 Equals.papszIgnoreAttr = papszIgnoreAttr;616 Equals.papszIgnoreAttrs = papszIgnoreAttrs; 617 617 Equals.pszError = pszError; 618 618 Equals.cbError = cbError;
Note:
See TracChangeset
for help on using the changeset viewer.