=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/Attic/req.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/cvs/Attic/req.c 2004/08/04 13:55:24 1.4 --- src/usr.bin/cvs/Attic/req.c 2004/08/06 14:49:03 1.5 *************** *** 1,4 **** ! /* $OpenBSD: req.c,v 1.4 2004/08/04 13:55:24 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: req.c,v 1.5 2004/08/06 14:49:03 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 59,64 **** --- 59,65 ---- static int cvs_req_validreq (int, char *); static int cvs_req_validresp (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_globalopt (int, char *); static int cvs_req_version (int, char *); *************** *** 85,92 **** { NULL }, { NULL }, { NULL }, { NULL }, - { NULL }, { cvs_req_argument }, /* 20 */ { cvs_req_argument }, { cvs_req_globalopt }, --- 86,93 ---- { NULL }, { NULL }, { NULL }, + { cvs_req_case }, { NULL }, { cvs_req_argument }, /* 20 */ { cvs_req_argument }, { cvs_req_globalopt }, *************** *** 236,241 **** --- 237,255 ---- + 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); }