[BACK]Return to filesys-os.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rdistd

Diff for /src/usr.bin/rdistd/filesys-os.c between version 1.5 and 1.6

version 1.5, 1998/06/26 21:20:47 version 1.6, 1999/02/04 23:18:57
Line 402 
Line 402 
                 return(NULL);                  return(NULL);
   
         new = (mntent_t *) xcalloc(1, sizeof(mntent_t));          new = (mntent_t *) xcalloc(1, sizeof(mntent_t));
         new->me_path = strdup(old->me_path);          new->me_path = xstrdup(old->me_path);
         new->me_type = strdup(old->me_type);          new->me_type = xstrdup(old->me_type);
         new->me_flags = old->me_flags;          new->me_flags = old->me_flags;
   
         return(new);          return(new);

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6