Diff for /rpl/src/gestion_fichiers.c between versions 1.3 and 1.4

version 1.3, 2010/02/10 10:14:19 version 1.4, 2010/02/12 13:52:01
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.3  
changed lines
  Added in v.1.4


CVSweb interface <joel.bertrand@systella.fr>