diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-22 16:27:30 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-22 16:27:30 +0000 |
commit | c42f88311255a9164d43bb105e4b64f906c5dfd3 (patch) | |
tree | cffa8e7827f203b766092b77ab25702eee9a8c0b /usr.bin/cvs/file.c | |
parent | 9350b78deaab34094bda1ca9586d15b14f26325b (diff) |
use the cf_name field of the CVSFILE struct instead of using the old
CVS_FILE_NAME macro. This macro used to be nifty because of all
the referencing for the names, but since we don't do that anymore and
use cf_name directly... byebye CVS_FILE_NAME()
okay xsa@
Diffstat (limited to 'usr.bin/cvs/file.c')
-rw-r--r-- | usr.bin/cvs/file.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index c38095c2949..caa58fee658 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.98 2005/07/18 01:02:20 joris Exp $ */ +/* $OpenBSD: file.c,v 1.99 2005/07/22 16:27:29 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -550,7 +550,7 @@ cvs_file_find(CVSFILE *hier, const char *path) } SIMPLEQ_FOREACH(sf, &(cf->cf_files), cf_list) - if (cvs_file_cmpname(pp, CVS_FILE_NAME(sf)) == 0) + if (cvs_file_cmpname(pp, sf->cf_name) == 0) break; if (sf == NULL) return (NULL); @@ -584,7 +584,7 @@ cvs_file_getpath(CVSFILE *file, char *buf, size_t len) /* find the top node */ for (top = file; (top != NULL) && (i > 0); top = top->cf_parent) { - fp = CVS_FILE_NAME(top); + fp = top->cf_name; /* skip self-references */ if ((fp[0] == '.') && (fp[1] == '\0')) @@ -886,7 +886,7 @@ cvs_file_getdir(CVSFILE *cf, int flags, char *path, int (*cb)(CVSFILE *, void *) cfp->cf_flags &= ~CVS_GDIR_IGNORE; if (cvs_file_getdir(cfp, flags, np, cb, arg) < 0) { - cvs_log(LP_ERR, "failed to get %s", CVS_FILE_NAME(cfp)); + cvs_log(LP_ERR, "failed to get %s", cfp->cf_name); continue; } } @@ -1020,7 +1020,7 @@ cvs_file_cmp(const void *f1, const void *f2) const CVSFILE *cf1, *cf2; cf1 = *(CVSFILE * const *)f1; cf2 = *(CVSFILE * const *)f2; - return cvs_file_cmpname(CVS_FILE_NAME(cf1), CVS_FILE_NAME(cf2)); + return cvs_file_cmpname(cf1->cf_name, cf2->cf_name); } |