diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 1998-12-03 07:25:13 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 1998-12-03 07:25:13 +0000 |
| commit | 467e41453ac9072c3ed07de4ed2d0262be97b501 (patch) | |
| tree | 93ef5fa4b03d3bd2ec63e675c6215971a2f8caa6 | |
| parent | da1852b35aa6093a0377b5b5b478e305a458a727 (diff) | |
Notes
| -rw-r--r-- | contrib/cvs/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cvs/src/main.c b/contrib/cvs/src/main.c index 5eb22bc9a657..9cb7bc0e55a5 100644 --- a/contrib/cvs/src/main.c +++ b/contrib/cvs/src/main.c @@ -519,7 +519,7 @@ main (argc, argv) * force full group write perms (used for shared checked-out * source trees, see manual page) */ - umask(mask(077) & 007); + umask(umask(077) & 007); break; case 't': trace = 1; |
