=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/commit.c,v retrieving revision 1.11 retrieving revision 1.12 diff -c -r1.11 -r1.12 *** src/usr.bin/cvs/commit.c 2004/12/13 23:08:45 1.11 --- src/usr.bin/cvs/commit.c 2004/12/14 22:30:48 1.12 *************** *** 1,4 **** ! /* $OpenBSD: commit.c,v 1.11 2004/12/13 23:08:45 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: commit.c,v 1.12 2004/12/14 22:30:48 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 119,136 **** } root = CVS_DIR_ROOT(cvs_files); ! cvs_connect(root); ! cvs_logmsg_send(root, msg); cvs_file_examine(cvs_files, cvs_commit_file, &cl); if (root->cr_method != CVS_METHOD_LOCAL) { ! cvs_senddir(root, cvs_files); ! if (argc > 0) { ! for (i = 0; i < argc; i++) ! cvs_sendarg(root, argv[i], 0); ! } ! cvs_sendreq(root, CVS_REQ_CI, NULL); } return (0); --- 119,145 ---- } root = CVS_DIR_ROOT(cvs_files); ! if (root == NULL) { ! cvs_log(LP_ERR, ! "No CVSROOT specified! Please use the `-d' option"); ! cvs_log(LP_ERR, ! "or set the CVSROOT environment variable."); ! return (EX_USAGE); ! } ! if ((root->cr_method != CVS_METHOD_LOCAL) && ! ((cvs_connect(root) < 0) || (cvs_logmsg_send(root, msg) < 0))) ! return (EX_PROTOCOL); cvs_file_examine(cvs_files, cvs_commit_file, &cl); if (root->cr_method != CVS_METHOD_LOCAL) { ! if (cvs_senddir(root, cvs_files) < 0) ! return (EX_PROTOCOL); ! for (i = 0; i < argc; i++) ! if (cvs_sendarg(root, argv[i], 0) < 0) ! return (EX_PROTOCOL); ! if (cvs_sendreq(root, CVS_REQ_CI, NULL) < 0) ! return (EX_PROTOCOL); } return (0); *************** *** 176,185 **** rf = NULL; repo = NULL; if (cf->cf_type == DT_DIR) { if (cf->cf_cvstat != CVS_FST_UNKNOWN) { - root = CVS_DIR_ROOT(cf); if ((cf->cf_parent != NULL) && (root != cf->cf_parent->cf_ddat->cd_root)) { cvs_connect(root); --- 185,194 ---- rf = NULL; repo = NULL; + root = CVS_DIR_ROOT(cf); if (cf->cf_type == DT_DIR) { if (cf->cf_cvstat != CVS_FST_UNKNOWN) { if ((cf->cf_parent != NULL) && (root != cf->cf_parent->cf_ddat->cd_root)) { cvs_connect(root); *************** *** 191,198 **** return (0); } - - root = CVS_DIR_ROOT(cf); cvs_file_getpath(cf, fpath, sizeof(fpath)); if (cf->cf_parent != NULL) --- 200,205 ----