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

Diff for /src/usr.bin/cvs/server.c between version 1.93 and 1.94

version 1.93, 2009/02/21 13:39:01 version 1.94, 2009/03/19 09:53:16
Line 465 
Line 465 
 void  void
 cvs_server_questionable(char *data)  cvs_server_questionable(char *data)
 {  {
           int fd;
           CVSENTRIES *entlist;
           struct cvs_ent *ent;
           char entry[CVS_ENT_MAXLINELEN];
   
           if (data == NULL)
                   fatal("Questionable request with no data attached");
   
           (void)xsnprintf(entry, sizeof(entry), "/%s/%c///", data,
               CVS_SERVER_QUESTIONABLE);
   
           entlist = cvs_ent_open(server_currentdir);
           cvs_ent_add(entlist, entry);
   
         /* sorry, we have to use TMP_DIR */          /* sorry, we have to use TMP_DIR */
         disable_fast_checkout = 1;          disable_fast_checkout = 1;
 }  }

Legend:
Removed from v.1.93  
changed lines
  Added in v.1.94