Diff for /rpl/src/gestion_fichiers.c between versions 1.1.1.1 and 1.5

version 1.1.1.1, 2010/01/26 15:22:44 version 1.5, 2010/03/04 10:17:48
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.9    RPL/2 (R) version 4.0.12
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2010 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
Line 312  caracteristiques_fichier(struct_processu Line 312  caracteristiques_fichier(struct_processu
     (*ouverture) = d_faux;      (*ouverture) = d_faux;
     (*existence) = d_faux;      (*existence) = d_faux;
   
     if ((descripteur = open(nom, O_CREAT | O_EXCL)) == -1)      if ((descripteur = open(nom, O_CREAT | O_EXCL, S_IRUSR | S_IWUSR)) == -1)
     {      {
         if (errno == EEXIST)          if (errno == EEXIST)
         {          {

Removed from v.1.1.1.1  
changed lines
  Added in v.1.5


CVSweb interface <joel.bertrand@systella.fr>