Changeset 2290


Ignore:
Timestamp:
2008-07-30T15:56:21Z (15 years ago)
Author:
peter
Message:

Merge r2289 from mainline - update naming scheme for patch tags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/c08_branch/source/version.h

    r2218 r2290  
    6262                // /tags/release/c08.01 -- first bug-fix rollup, etc...
    6363                //
    64                 // /tags/patch_versions/c08.00.00 -- identical to /tags/release/c08.00
    65                 // /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...
    6666
    6767                vector<string> Part;
     
    114114                        if( lgPatchTag )
    115115                        {
    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 );
    118118                                if( nPatchLevel != CLD_PATCH )
    119119                                        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...
    121121                                if( nPatchLevel == 0 )
    122122                                        lgReleaseTag = true;
Note: See TracChangeset for help on using the changeset viewer.