diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2009-02-23 21:33:13 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2009-02-23 21:33:13 +0000 |
commit | 20422dc2142ac83b59a6ab8d33619f2ede057333 (patch) | |
tree | eb32d1f4ee2aaa415856434f121a92881480d45e /usr.bin | |
parent | d582c5bbe2db38d76ad80bab3374a05349a1be3e (diff) |
unused var
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cvs/util.c b/usr.bin/cvs/util.c index 1aac6f567a5..4fe9fb65fe2 100644 --- a/usr.bin/cvs/util.c +++ b/usr.bin/cvs/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.149 2009/02/23 21:32:08 joris Exp $ */ +/* $OpenBSD: util.c,v 1.150 2009/02/23 21:33:12 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2005, 2006 Joris Vink <joris@openbsd.org> @@ -589,8 +589,7 @@ cvs_mkpath(const char *path, char *tag) FILE *fp; size_t len; struct hash_data *hdata, hd; - char *entry, sticky[CVS_REV_BUFSZ]; - char *sp, *dp, *dir, *p, rpath[MAXPATHLEN], repo[MAXPATHLEN]; + char *entry, *sp, *dp, *dir, *p, rpath[MAXPATHLEN], repo[MAXPATHLEN]; hdata = hash_table_find(&created_directories, path, strlen(path)); if (hdata != NULL) |