diff options
author | peter <peter@FreeBSD.org> | 2001-11-15 20:24:41 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-11-15 20:24:41 +0000 |
commit | 50d3333373e67f9a29164d1be47fa324ecbacc81 (patch) | |
tree | 1858f15388f751eb5ef90f1524af55a3c397797e | |
parent | 93473c12c37dc346920147898d79974b82a4158a (diff) | |
download | FreeBSD-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.c | 1 |
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) |