Changeset 389 for CMT/HEAD


Ignore:
Timestamp:
Mar 22, 2007, 5:13:51 PM (17 years ago)
Author:
garonne
Message:

See C.L. 325

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r388 r389  
     12007-03-22 Vincent Garonne <garonne@lal.in2p3.fr> 325
     2
     3        * source/cmt.cxx: Extract the pure status code when executing an action
     4
    152007-03-07 Vincent Garonne <garonne@lal.in2p3.fr> 324
    26
  • CMT/HEAD/source/cmt.cxx

    r363 r389  
    1616   //cout << "argc=" << argc << endl;
    1717  int status = Cmt::parser (argc, argv);
    18   if (status !=0) return -1;
     18  // Extract the pure status code
     19  if  (status > 255)
     20    status =  status/256;
    1921  return (status);
    2022}
Note: See TracChangeset for help on using the changeset viewer.