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

Diff for /src/usr.bin/cvs/tag.c between version 1.1 and 1.2

version 1.1, 2004/12/14 19:11:54 version 1.2, 2004/12/14 22:30:48
Line 116 
Line 116 
                 return (EX_USAGE);                  return (EX_USAGE);
         }          }
   
         if ((root->cr_method != CVS_METHOD_LOCAL) && (cvs_connect(root) < 0))  
                 return (EX_OSERR);  
   
         if (root->cr_method != CVS_METHOD_LOCAL) {          if (root->cr_method != CVS_METHOD_LOCAL) {
                 if (branch)                  if (cvs_connect(root) < 0)
                         cvs_sendarg(root, "-b", 0);                          return (EX_PROTOCOL);
                 if (delete)                  if (branch && (cvs_sendarg(root, "-b", 0) < 0))
                         cvs_sendarg(root, "-d", 0);                          return (EX_PROTOCOL);
                   if (delete && (cvs_sendarg(root, "-d", 0) < 0))
                           return (EX_PROTOCOL);
                 if (old_tag) {                  if (old_tag) {
                         cvs_sendarg(root, "-r", 0);                          cvs_sendarg(root, "-r", 0);
                         cvs_sendarg(root, old_tag, 0);                          cvs_sendarg(root, old_tag, 0);
                 }                  }
                 cvs_sendarg(root, tag, 0);                  if (cvs_sendarg(root, tag, 0) < 0)
                           return (EX_PROTOCOL);
         }          }
   
         cvs_file_examine(cvs_files, cvs_tag_file, NULL);          cvs_file_examine(cvs_files, cvs_tag_file, NULL);
   
         if (root->cr_method != CVS_METHOD_LOCAL) {          if (root->cr_method != CVS_METHOD_LOCAL) {
                 cvs_senddir(root, cvs_files);                  if (cvs_senddir(root, cvs_files) < 0)
                 cvs_sendreq(root, CVS_REQ_TAG, NULL);                          return (EX_PROTOCOL);
                   if (cvs_sendreq(root, CVS_REQ_TAG, NULL) < 0)
                           return (EX_PROTOCOL);
         }          }
   
         return (0);          return (0);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2