Changeset 444 for CMT/HEAD


Ignore:
Timestamp:
Feb 18, 2008, 5:40:13 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 348

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r443 r444  
     12008-02-18    <rybkin@lal.in2p3.fr> 348
     2       
     3        * source/cmt_system.cxx: Check the pclose () function return value to obtain
     4        the exit status of the executed command
     5        (used in the CvsImplementation::execute_and_retry () method)
     6       
    172008-02-16    <rybkin@lal.in2p3.fr> 347
    28       
  • CMT/HEAD/source/cmt_system.cxx

    r435 r444  
    16281628          output += ptr;
    16291629        }
    1630       pclose (f);
     1630
     1631      if (pclose (f) == -1)
     1632        {
     1633          if (errno == ECHILD)
     1634            {
     1635              return (0);
     1636            }
     1637          return (1);
     1638        }
    16311639
    16321640      return (0);
Note: See TracChangeset for help on using the changeset viewer.