[BACK]Return to import.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/import.c between version 1.104 and 1.105

version 1.104, 2015/01/16 06:40:07 version 1.105, 2015/11/05 09:48:21
Line 19 
Line 19 
   
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
Line 191 
Line 192 
                 cvs_trigger_freelist(line_list);                  cvs_trigger_freelist(line_list);
         }          }
   
         xfree(loginfo);          free(loginfo);
         return (0);          return (0);
 }  }
   
Line 209 
Line 210 
         cvs_printf("%s", str);          cvs_printf("%s", str);
         buf_puts(logbuf, str);          buf_puts(logbuf, str);
   
         xfree(str);          free(str);
 }  }
   
 void  void
Line 482 
Line 483 
         (void)unlink(p1);          (void)unlink(p1);
         (void)unlink(p2);          (void)unlink(p2);
   
         xfree(p1);          free(p1);
         xfree(p2);          free(p2);
   
         return (b2);          return (b2);
 }  }

Legend:
Removed from v.1.104  
changed lines
  Added in v.1.105