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

Diff for /src/usr.bin/cvs/Attic/req.c between version 1.4 and 1.5

version 1.4, 2004/08/04 13:55:24 version 1.5, 2004/08/06 14:49:03
Line 59 
Line 59 
 static int  cvs_req_validreq   (int, char *);  static int  cvs_req_validreq   (int, char *);
 static int  cvs_req_validresp  (int, char *);  static int  cvs_req_validresp  (int, char *);
 static int  cvs_req_directory  (int, char *);  static int  cvs_req_directory  (int, char *);
   static int  cvs_req_case       (int, char *);
 static int  cvs_req_argument   (int, char *);  static int  cvs_req_argument   (int, char *);
 static int  cvs_req_globalopt  (int, char *);  static int  cvs_req_globalopt  (int, char *);
 static int  cvs_req_version    (int, char *);  static int  cvs_req_version    (int, char *);
Line 85 
Line 86 
         { NULL               },          { NULL               },
         { NULL               },          { NULL               },
         { NULL               },          { NULL               },
           { cvs_req_case       },
         { NULL               },          { NULL               },
         { NULL               },  
         { cvs_req_argument   }, /* 20 */          { cvs_req_argument   }, /* 20 */
         { cvs_req_argument   },          { cvs_req_argument   },
         { cvs_req_globalopt  },          { cvs_req_globalopt  },
Line 236 
Line 237 
   
   
   
           return (0);
   }
   
   /*
    * cvs_req_case()
    *
    * Handler for the `Case' requests, which toggles case sensitivity ON or OFF
    */
   
   static int
   cvs_req_case(int reqid, char *line)
   {
           cvs_nocase = 1;
         return (0);          return (0);
 }  }
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5