[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.62 and 1.63

version 1.62, 2007/06/26 02:24:10 version 1.63, 2007/06/27 20:42:19
Line 115 
Line 115 
                 if (req->hdlr == NULL)                  if (req->hdlr == NULL)
                         fatal("opencvs server does not support '%s'", cmd);                          fatal("opencvs server does not support '%s'", cmd);
   
                   if ((req->flags & REQ_NEEDDIR) && (server_currentdir == NULL))
                           fatal("`%s' needs a directory to be sent with "
                               "the `Directory` request first", cmd);
   
                 (*req->hdlr)(data);                  (*req->hdlr)(data);
                 xfree(cmd);                  xfree(cmd);
         }          }

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63