Diff for /rpl/src/rpl.c between versions 1.95 and 1.96

version 1.95, 2011/09/26 15:57:17 version 1.96, 2011/10/10 10:58:12
Line 3647  informations(struct_processus *s_etat_pr Line 3647  informations(struct_processus *s_etat_pr
     return;      return;
 }  }
   
   
   unsigned char *
   date_compilation()
   {
       unsigned char       *date;
   
       if ((date = malloc((strlen(d_date_en_rpl) + 1) * sizeof(unsigned char)))
               == NULL)
       {
           return(NULL);
       }
   
       strcpy(date, d_date_en_rpl);
   
       return(date);
   }
   
 // vim: ts=4  // vim: ts=4

Removed from v.1.95  
changed lines
  Added in v.1.96


CVSweb interface <joel.bertrand@systella.fr>