diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-09-22 16:01:23 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-09-22 16:01:23 +0000 |
commit | 0d83276c664f67d2670a75d00571c510830d8d10 (patch) | |
tree | e599820e2290749831ca6f4184f55756f50d74a4 /usr.bin/cvs/repository.c | |
parent | a634a04dd7e99d9335ce37798fb7b6335c3495f5 (diff) |
better branching/sticky tag support, no branch commits yet though.
Diffstat (limited to 'usr.bin/cvs/repository.c')
-rw-r--r-- | usr.bin/cvs/repository.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/repository.c b/usr.bin/cvs/repository.c index e255ff338f6..c6934cc11f1 100644 --- a/usr.bin/cvs/repository.c +++ b/usr.bin/cvs/repository.c @@ -1,4 +1,4 @@ -/* $OpenBSD: repository.c,v 1.14 2007/07/03 13:22:43 joris Exp $ */ +/* $OpenBSD: repository.c,v 1.15 2007/09/22 16:01:22 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -150,12 +150,12 @@ cvs_repository_getdir(const char *dir, const char *wdir, if (!strcmp(dp->d_name, CVS_PATH_ATTIC)) cvs_repository_getdir(rpath, wdir, fl, dl, 0); else - cvs_file_get(fpath, dl); + cvs_file_get(fpath, 0, dl); break; case CVS_FILE: if ((s = strrchr(fpath, ',')) != NULL) *s = '\0'; - cvs_file_get(fpath, fl); + cvs_file_get(fpath, 0, fl); break; default: fatal("type %d unknown, shouldn't happen", type); |