diff options
author | peter <peter@FreeBSD.org> | 1999-08-08 20:26:55 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-08-08 20:26:55 +0800 |
commit | 72a2b2fe04e9b4ddf36e59aab31952b3af2f7484 (patch) | |
tree | c8e15dfd9a81b0ee4ca535c231bbd63fcd49c14d /CVSROOT | |
parent | 341702cffd81538221d7b80d2b817e16c1f7ac71 (diff) | |
download | freebsd-ports-gnome-72a2b2fe04e9b4ddf36e59aab31952b3af2f7484.tar.gz freebsd-ports-gnome-72a2b2fe04e9b4ddf36e59aab31952b3af2f7484.tar.zst freebsd-ports-gnome-72a2b2fe04e9b4ddf36e59aab31952b3af2f7484.zip |
Oops, that sanity check wasn't such a good idea if log_accum calls cvs
recursively...
Noticed by: bde
Diffstat (limited to 'CVSROOT')
-rw-r--r-- | CVSROOT/cvswrap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CVSROOT/cvswrap.c b/CVSROOT/cvswrap.c index 32a98e24d31e..d7a3a9bfe8aa 100644 --- a/CVSROOT/cvswrap.c +++ b/CVSROOT/cvswrap.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: cvswrap.c,v 1.1 1999/08/08 10:52:18 peter Exp $ */ /* @@ -55,8 +55,11 @@ main(int ac, char **av) karma = 0; +#if 0 + /* not such a good idea if cvs is called from the commitlog scripts */ if (getgid() == getegid()) errx(1, "fatal: not installed setgid correctly!"); +#endif fp = fopen(ACCESS, "r"); if (fp == NULL) |