diff options
author | 2006-05-30 21:32:52 +0000 | |
---|---|---|
committer | 2006-05-30 21:32:52 +0000 | |
commit | 3daf660905162e2fa4d9fd0f294eee0ea7e3cedd (patch) | |
tree | 36bb06a808ec2d1ada9720149a4fcb6e00100ade /usr.bin/cvs/commit.c | |
parent | remove dev/isa/isavar.h include, not needed anymore (diff) | |
download | wireguard-openbsd-3daf660905162e2fa4d9fd0f294eee0ea7e3cedd.tar.xz wireguard-openbsd-3daf660905162e2fa4d9fd0f294eee0ea7e3cedd.zip |
fill in the correct revision number we will want in file_rcsrev
for each cvs_file struct, this will help us with sticky tags,
commiting to branches and importing into existing repositories.
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r-- | usr.bin/cvs/commit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index 80a78dae576..26a57c708bf 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.64 2006/05/30 04:20:27 joris Exp $ */ +/* $OpenBSD: commit.c,v 1.65 2006/05/30 21:32:52 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -113,7 +113,7 @@ cvs_commit_check_conflicts(struct cvs_file *cf) * cvs_file_classify makes the noise for us * XXX - we want that? */ - cvs_file_classify(cf, 1); + cvs_file_classify(cf, NULL, 1); if (cf->file_type == CVS_DIR) { if (verbosity > 1) @@ -156,7 +156,7 @@ cvs_commit_local(struct cvs_file *cf) char *attic, *repo; cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path); - cvs_file_classify(cf, 0); + cvs_file_classify(cf, NULL, 0); if (cf->file_type != CVS_FILE) fatal("cvs_commit_local: '%s' is not a file", cf->file_path); |