From 467e41453ac9072c3ed07de4ed2d0262be97b501 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 3 Dec 1998 07:25:13 +0000 Subject: [PATCH] Fixed typo in previous commit. oops. --- contrib/cvs/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;