diff options
author | 2004-08-03 04:28:15 +0000 | |
---|---|---|
committer | 2004-08-03 04:28:15 +0000 | |
commit | 5c9abee2ef1e24c550d3cc456f0721c8a637b950 (patch) | |
tree | 854a350ef15e6ebcd1c9c5815158417e5e8b5f83 | |
parent | Initialize ndirs (diff) | |
download | wireguard-openbsd-5c9abee2ef1e24c550d3cc456f0721c8a637b950.tar.xz wireguard-openbsd-5c9abee2ef1e24c550d3cc456f0721c8a637b950.zip |
cleanup
-rw-r--r-- | usr.bin/cvs/file.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index 987f8306f7f..52a8c896b43 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.18 2004/08/03 04:27:30 jfb Exp $ */ +/* $OpenBSD: file.c,v 1.19 2004/08/03 04:28:15 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -290,11 +290,8 @@ cvs_file_get(const char *path, int flags) CVSFILE* cvs_file_getspec(char **fspec, int fsn, int flags) { - int i, c; - char common[MAXPATHLEN], *cp; - CVSFILE *cfp; - - return (cfp); + /* XXX implement me */ + return (NULL); } |