summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-11-15 20:24:41 +0000
committerpeter <peter@FreeBSD.org>2001-11-15 20:24:41 +0000
commit50d3333373e67f9a29164d1be47fa324ecbacc81 (patch)
tree1858f15388f751eb5ef90f1524af55a3c397797e
parent93473c12c37dc346920147898d79974b82a4158a (diff)
downloadFreeBSD-ports-50d3333373e67f9a29164d1be47fa324ecbacc81.zip
FreeBSD-ports-50d3333373e67f9a29164d1be47fa324ecbacc81.tar.gz
umask needs to be 002 for freefall. Otherwise 'cvs add' of a directory
comes out wrong. (naughty joe!)
-rw-r--r--CVSROOT/cvswrap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/CVSROOT/cvswrap.c b/CVSROOT/cvswrap.c
index 26310f1..45e0d20 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)
OpenPOWER on IntegriCloud