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

Diff for /src/usr.bin/cvs/client.c between version 1.37 and 1.38

version 1.37, 2006/12/19 15:12:59 version 1.38, 2006/12/19 16:04:40
Line 738 
Line 738 
 void  void
 cvs_client_remove_entry(char *data)  cvs_client_remove_entry(char *data)
 {  {
         char *dir;          CVSENTRIES *entlist;
           struct cvs_ent *ent;
           char *dir, *entry;
   
         dir = cvs_remote_input();          dir = cvs_remote_input();
           entry = cvs_remote_input();
         xfree(dir);          xfree(dir);
   
           cvs_log(LP_TRACE, "cvs_client_remove_entry(%s)", entry);
   
           if ((ent = cvs_ent_parse(entry)) == NULL)
                   fatal("cvs_client_remove_entry: cvs_ent_parse failed");
   
           entlist = cvs_ent_open(data);
   
           cvs_ent_remove(entlist, ent->ce_name);
           cvs_ent_free(ent);
           cvs_ent_close(entlist, ENT_SYNC);
   
           xfree(entry);
 }  }
   
 void  void

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38