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/getlog.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/getlog.c')
-rw-r--r-- | usr.bin/cvs/getlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index 17f4c1a1a9d..ca49e535997 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.41 2005/07/21 11:42:24 xsa Exp $ */ +/* $OpenBSD: getlog.c,v 1.42 2005/07/22 16:27:29 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -165,7 +165,7 @@ cvs_getlog_remote(CVSFILE *cf, void *arg) if (cf->cf_type == DT_DIR) { if (cf->cf_cvstat == CVS_FST_UNKNOWN) ret = cvs_sendreq(root, CVS_REQ_QUESTIONABLE, - CVS_FILE_NAME(cf)); + cf->cf_name); else ret = cvs_senddir(root, cf); return (ret); |