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

Diff for /src/usr.bin/cvs/admin.c between version 1.65 and 1.66

version 1.65, 2015/01/16 06:40:06 version 1.66, 2015/11/05 09:48:21
Line 23 
Line 23 
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <libgen.h>  #include <libgen.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
Line 304 
Line 305 
                 while (!TAILQ_EMPTY(&(cf->file_rcs->rf_access))) {                  while (!TAILQ_EMPTY(&(cf->file_rcs->rf_access))) {
                         rap = TAILQ_FIRST(&(cf->file_rcs->rf_access));                          rap = TAILQ_FIRST(&(cf->file_rcs->rf_access));
                         TAILQ_REMOVE(&(cf->file_rcs->rf_access), rap, ra_list);                          TAILQ_REMOVE(&(cf->file_rcs->rf_access), rap, ra_list);
                         xfree(rap->ra_name);                          free(rap->ra_name);
                         xfree(rap);                          free(rap);
                 }                  }
                 /* no synced anymore */                  /* no synced anymore */
                 cf->file_rcs->rf_flags &= ~RCS_SYNCED;                  cf->file_rcs->rf_flags &= ~RCS_SYNCED;

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66