aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-11-16 04:24:41 +0800
committerpeter <peter@FreeBSD.org>2001-11-16 04:24:41 +0800
commit50d3333373e67f9a29164d1be47fa324ecbacc81 (patch)
tree1858f15388f751eb5ef90f1524af55a3c397797e /CVSROOT
parent93473c12c37dc346920147898d79974b82a4158a (diff)
downloadfreebsd-ports-gnome-50d3333373e67f9a29164d1be47fa324ecbacc81.tar.gz
freebsd-ports-gnome-50d3333373e67f9a29164d1be47fa324ecbacc81.tar.zst
freebsd-ports-gnome-50d3333373e67f9a29164d1be47fa324ecbacc81.zip
umask needs to be 002 for freefall. Otherwise 'cvs add' of a directory
comes out wrong. (naughty joe!)
Diffstat (limited to 'CVSROOT')
-rw-r--r--CVSROOT/cvswrap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/CVSROOT/cvswrap.c b/CVSROOT/cvswrap.c
index 26310f1ebb73..45e0d2005f69 100644
--- a/CVSROOT/cvswrap.c
+++ b/CVSROOT/cvswrap.c
@@ -60,6 +60,7 @@ main(int ac, char **av)
if (getgid() == getegid())
errx(1, "fatal: not installed setgid correctly!");
#endif
+ umask(002);
fp = fopen(ACCESS, "r");
if (fp == NULL)