diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-06-13 17:15:14 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-06-13 17:15:14 +0000 |
commit | 39a7428437d74af1ab466bfe91ea8e0b335eade1 (patch) | |
tree | e1189c7b01f6632dcc46bff42225b1c860cf42ee /usr.bin/cvs/file.h | |
parent | 0f096dcc34bcfd1db0e7835d890288e788efd66c (diff) |
pass the complete path to cvs_file_get_cf() instead of reconstructing
it again in that function.
Diffstat (limited to 'usr.bin/cvs/file.h')
-rw-r--r-- | usr.bin/cvs/file.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/file.h b/usr.bin/cvs/file.h index 55d0a00f7c6..d1a4c29c5ce 100644 --- a/usr.bin/cvs/file.h +++ b/usr.bin/cvs/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.48 2008/03/09 01:54:03 joris Exp $ */ +/* $OpenBSD: file.h,v 1.49 2008/06/13 17:15:13 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -111,6 +111,7 @@ int cvs_file_cmpname(const char *, const char *); int cvs_file_cmp(const char *, const char *); int cvs_file_copy(const char *, const char *); -struct cvs_file *cvs_file_get_cf(const char *, const char *, int, int, int); +struct cvs_file *cvs_file_get_cf(const char *, const char *, const char *, + int, int, int); #endif /* FILE_H */ |