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

Diff for /src/usr.bin/cvs/Attic/proto.c between version 1.56 and 1.57

version 1.56, 2005/05/31 08:58:48 version 1.57, 2005/06/10 21:32:08
Line 684 
Line 684 
   
         /* is this request supported by the server? */          /* is this request supported by the server? */
         if (!CVS_GETVR(root, req->req_id)) {          if (!CVS_GETVR(root, req->req_id)) {
                 cvs_log(LP_WARN, "remote end does not support request `%s'",                  if (rid == CVS_REQ_VERSION) {
                     req->req_str);                          ret = cvs_sendreq(root, CVS_REQ_NOOP, arg);
                 return (-1);                  } else {
                           cvs_log(LP_WARN,
                               "remote end does not support request `%s'",
                               req->req_str);
                           ret = -1;
                   }
                   return (ret);
         }          }
   
         l = snprintf(cvs_proto_buf, sizeof(cvs_proto_buf), "%s%s%s\n",          l = snprintf(cvs_proto_buf, sizeof(cvs_proto_buf), "%s%s%s\n",

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57