Changeset 2290
- Timestamp:
- 2008-07-30T15:56:21Z (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/c08_branch/source/version.h
r2218 r2290 62 62 // /tags/release/c08.01 -- first bug-fix rollup, etc... 63 63 // 64 // /tags/patch_versions/c08.00 .00 -- identical to /tags/release/c08.0065 // /tags/patch_versions/c08.00 .01 -- first patch update, etc...64 // /tags/patch_versions/c08.00_pl00 -- identical to /tags/release/c08.00 65 // /tags/patch_versions/c08.00_pl01 -- first patch update, etc... 66 66 67 67 vector<string> Part; … … 114 114 if( lgPatchTag ) 115 115 { 116 // this expects a branch name like "c08.01 .02"117 sscanf( Branch.substr( 7,2).c_str(), "%d", &nPatchLevel );116 // this expects a branch name like "c08.01_pl02" 117 sscanf( Branch.substr(9,2).c_str(), "%d", &nPatchLevel ); 118 118 if( nPatchLevel != CLD_PATCH ) 119 119 fprintf( ioQQQ, "PROBLEM - CLD_PATCH mismatch, please check version.h\n" ); 120 // c08.00 .00 is identical to release c08.00, so pass it off as the latter...120 // c08.00_pl00 is identical to release c08.00, so pass it off as the latter... 121 121 if( nPatchLevel == 0 ) 122 122 lgReleaseTag = true;
Note: See TracChangeset
for help on using the changeset viewer.