diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-04-01 00:56:55 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-04-01 00:56:55 +0000 |
commit | ee2524662fc87dbd025bb6798c56c09e541dc571 (patch) | |
tree | f0e6209e835e0f1c3475bf642456c0917df6fd7a /usr.bin | |
parent | 86839acd0cfd4b7a6bdb720b8ca0fe5ee562e25e (diff) |
improve import a bit:
- create directory and files with the correct permissions
- correctly add the branch revision to the branch list of the head revision
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/import.c | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/usr.bin/cvs/import.c b/usr.bin/cvs/import.c index 663133e6551..12ccf5e3b35 100644 --- a/usr.bin/cvs/import.c +++ b/usr.bin/cvs/import.c @@ -1,4 +1,4 @@ -/* $OpenBSD: import.c,v 1.40 2006/03/27 15:26:11 xsa Exp $ */ +/* $OpenBSD: import.c,v 1.41 2006/04/01 00:56:54 joris Exp $ */ /* * Copyright (c) 2004 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -131,7 +131,7 @@ cvs_import_pre_exec(struct cvsroot *root) sizeof(repodir)) >= sizeof(repodir)) fatal("cvs_import_pre_exec: cvs_path_cat overflow"); - if (mkdir(repodir, 0700) == -1) + if (mkdir(repodir, 0775) == -1) fatal("cvs_import_pre_exec: mkdir `%s': %s", repodir, strerror(errno)); } else { @@ -224,8 +224,10 @@ cvs_import_local(CVSFILE *cf, void *arg) struct stat fst; struct timeval ts[2]; struct cvsroot *root; + struct rcs_delta *rdp; + struct rcs_branch *brp; RCSFILE *rf; - RCSNUM *rev; + RCSNUM *rev, *brev; BUF *bp; root = CVS_DIR_ROOT(cf); @@ -245,7 +247,7 @@ cvs_import_local(CVSFILE *cf, void *arg) fatal("cvs_import_local: cvs_path_cat overflow"); cvs_printf("Importing %s\n", rpath); - if (mkdir(rpath, 0700) == -1) { + if (mkdir(rpath, 0755) == -1) { cvs_log(LP_ERRNO, "failed to create %s", rpath); } @@ -280,7 +282,7 @@ cvs_import_local(CVSFILE *cf, void *arg) cvs_printf("N %s\n", fpath); - if ((rf = rcs_open(rpath, RCS_RDWR|RCS_CREATE)) == NULL) + if ((rf = rcs_open(rpath, RCS_RDWR|RCS_CREATE, 0444)) == NULL) fatal("cvs_import_local: rcs_open: `%s': %s", rpath, rcs_errstr(rcs_errno)); @@ -288,19 +290,20 @@ cvs_import_local(CVSFILE *cf, void *arg) if (comment != NULL) rcs_comment_set(rf, comment); - rev = rcsnum_brtorev(imp_brnum); - if (rcs_rev_add(rf, rev, cvs_msg, stamp, NULL) < 0) { + brev = rcsnum_brtorev(imp_brnum); + if (rcs_rev_add(rf, brev, cvs_msg, stamp, NULL) < 0) { (void)unlink(rpath); fatal("cvs_import_local: rcs_rev_add failed: %s", rcs_errstr(rcs_errno)); } - if (rcs_sym_add(rf, release, rev) < 0) { + if (rcs_sym_add(rf, release, brev) < 0) { (void)unlink(rpath); fatal("cvs_import_local: rcs_sym_add failed: %s", rcs_errstr(rcs_errno)); } + rev = rcsnum_alloc(); rcsnum_cpy(imp_brnum, rev, 2); if (rcs_rev_add(rf, rev, cvs_msg, stamp, NULL) < 0) { (void)unlink(rpath); @@ -326,6 +329,15 @@ cvs_import_local(CVSFILE *cf, void *arg) rcs_errstr(rcs_errno)); } + /* + * Put the branch revision on the branches list for the first revision. + */ + rdp = rcs_findrev(rf, rev); + brp = (struct rcs_branch *)xmalloc(sizeof(*brp)); + brp->rb_num = rcsnum_alloc(); + rcsnum_cpy(brev, brp->rb_num, 0); + TAILQ_INSERT_TAIL(&(rdp->rd_branches), brp, rb_list); + if ((bp = cvs_buf_load(fpath, BUF_AUTOEXT)) == NULL) { (void)unlink(rpath); fatal("cvs_import_local: cvs_buf_load failed"); |