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