diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-14 15:39:43 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-14 15:39:43 +0000 |
commit | 870dc971b476c4d695304baaaacc7560ea9dcdc3 (patch) | |
tree | 5b8b89b16b84dc9dd33a8a12f5456ba8ecd14d24 /usr.bin/cvs/cvs.c | |
parent | 735ff64164a35c86efb3b29ad72ba796e78f36a7 (diff) |
Add support for the "Set" request.
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index b02d1e69e91..647ec69d11f 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.108 2006/11/14 15:23:50 xsa Exp $ */ +/* $OpenBSD: cvs.c,v 1.109 2006/11/14 15:39:41 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -63,8 +63,6 @@ char *cvs_tmpdir = CVS_TMPDIR_DEFAULT; struct cvsroot *current_cvsroot = NULL; -static TAILQ_HEAD(, cvs_var) cvs_variables; - int cvs_getopt(int, char **); void usage(void); static void cvs_read_rcfile(void); |