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

Diff for /src/usr.bin/cvs/commit.c between version 1.20 and 1.21

version 1.20, 2005/04/03 17:32:50 version 1.21, 2005/04/11 17:56:27
Line 88 
Line 88 
                         cvs_commit.file_flags |= CF_RECURSE;                          cvs_commit.file_flags |= CF_RECURSE;
                         break;                          break;
                 default:                  default:
                         return (EX_USAGE);                          return (1);
                 }                  }
         }          }
   
         if ((cvs_msg != NULL) && (mfile != NULL)) {          if ((cvs_msg != NULL) && (mfile != NULL)) {
                 cvs_log(LP_ERR, "the -F and -m flags are mutually exclusive");                  cvs_log(LP_ERR, "the -F and -m flags are mutually exclusive");
                 return (EX_USAGE);                  return (1);
         }          }
   
         if ((mfile != NULL) && (cvs_msg = cvs_logmsg_open(mfile)) == NULL)          if ((mfile != NULL) && (cvs_msg = cvs_logmsg_open(mfile)) == NULL)

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21