diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2009-02-21 12:52:48 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2009-02-21 12:52:48 +0000 |
commit | 4e04a6d8d082537e6d0d5d3c51fceedbde1f44cb (patch) | |
tree | 37e461a1bbe2f6543a5c264357d15e0afa6547e3 /usr.bin/cvs/root.c | |
parent | 9e0217ae3f5ccf1b95434dbc221c8edb438a937f (diff) |
cleanup of CVSROOT, we have no need for cr_flags,
cr_version or cr_vrmask[] its all very old stuff.
remove all macros using cr_vrmask as well, no use for them.
Diffstat (limited to 'usr.bin/cvs/root.c')
-rw-r--r-- | usr.bin/cvs/root.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/cvs/root.c b/usr.bin/cvs/root.c index a96d57fb46c..2d1288235e9 100644 --- a/usr.bin/cvs/root.c +++ b/usr.bin/cvs/root.c @@ -1,4 +1,4 @@ -/* $OpenBSD: root.c,v 1.45 2008/06/20 23:00:13 tobias Exp $ */ +/* $OpenBSD: root.c,v 1.46 2009/02/21 12:52:47 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -69,8 +69,6 @@ cvsroot_parse(const char *str) root = xcalloc(1, sizeof(*root)); root->cr_method = CVS_METHOD_NONE; - CVS_RSTVR(root); - root->cr_str = xstrdup(str); root->cr_buf = xstrdup(str); |