Disable logging to CVSROOT/history if we are running on a read-only file
authortholo <tholo@openbsd.org>
Sat, 14 Sep 1996 21:23:36 +0000 (21:23 +0000)
committertholo <tholo@openbsd.org>
Sat, 14 Sep 1996 21:23:36 +0000 (21:23 +0000)
system

gnu/usr.bin/cvs/src/main.c

index 0150771..bf9c83c 100644 (file)
@@ -334,8 +334,10 @@ main (argc, argv)
     }
     if (getenv (CVSREAD_ENV) != NULL)
        cvswrite = FALSE;
-    if (getenv (CVSREADONLYFS_ENV))
+    if (getenv (CVSREADONLYFS_ENV)) {
        readonlyfs = TRUE;
+       logoff = TRUE;
+    }
     if ((cp = getenv (CVSUMASK_ENV)) != NULL)
     {
        /* FIXME: Should be accepting symbolic as well as numeric mask.  */