diff options
author | dillon <dillon@FreeBSD.org> | 1998-12-03 07:25:13 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1998-12-03 07:25:13 +0000 |
commit | c29e99d22666c7dfe45bf948d08019a85fb1d4f7 (patch) | |
tree | 2ad859ff667228f280a0ecadcb3e4db3ba2764e8 /contrib/cvs | |
parent | 32e8f491a895ba38df82f5796205769c4b43f227 (diff) | |
download | FreeBSD-src-c29e99d22666c7dfe45bf948d08019a85fb1d4f7.zip FreeBSD-src-c29e99d22666c7dfe45bf948d08019a85fb1d4f7.tar.gz |
Fixed typo in previous commit. oops.
Diffstat (limited to 'contrib/cvs')
-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 5eb22bc..9cb7bc0 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; |