diff options
author | 2007-09-24 22:06:28 +0000 | |
---|---|---|
committer | 2007-09-24 22:06:28 +0000 | |
commit | 5a1806ed461cf58bff2ef96fb30a95b1a8fe9715 (patch) | |
tree | 8c732a315d4c5d8710806be282d2c438ba34220c /usr.bin/cvs/edit.c | |
parent | updatecomment and manpage toemtion optional seventh level (rtable id) (diff) | |
download | wireguard-openbsd-5a1806ed461cf58bff2ef96fb30a95b1a8fe9715.tar.xz wireguard-openbsd-5a1806ed461cf58bff2ef96fb30a95b1a8fe9715.zip |
oops i was suppose to pass cvs_directory_tag to cvs_file_classify().
Diffstat (limited to 'usr.bin/cvs/edit.c')
-rw-r--r-- | usr.bin/cvs/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/edit.c b/usr.bin/cvs/edit.c index d17e8c79d09..59178612c6c 100644 --- a/usr.bin/cvs/edit.c +++ b/usr.bin/cvs/edit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.c,v 1.37 2007/09/22 16:01:22 joris Exp $ */ +/* $OpenBSD: edit.c,v 1.38 2007/09/24 22:06:28 joris Exp $ */ /* * Copyright (c) 2006, 2007 Xavier Santolaria <xsa@openbsd.org> * @@ -335,7 +335,7 @@ cvs_unedit_local(struct cvs_file *cf) cvs_log(LP_TRACE, "cvs_unedit_local(%s)", cf->file_path); - cvs_file_classify(cf, cvs_file_classify); + cvs_file_classify(cf, cvs_directory_tag); (void)xsnprintf(bfpath, MAXPATHLEN, "%s/%s", CVS_PATH_BASEDIR, cf->file_name); |