]> git.pld-linux.org Git - packages/cvs.git/blobdiff - cvs-cvspass.patch
- added readme for access list extension to doc
[packages/cvs.git] / cvs-cvspass.patch
index 2cd7d48e038e91ed6b5f419f86b34e028aa21bfb..b022ff0796d3f556c8b73d2f47ee3d3c15df4362 100644 (file)
@@ -1,34 +1,23 @@
---- cvs-1.11.2/src/login.c.orig        Thu Sep  6 18:18:29 2001
-+++ cvs-1.11.2/src/login.c     Sat Apr 20 00:13:24 2002
+--- cvs-1.11.1p1/src/login.c.bero      Tue Jul 31 18:12:58 2001
++++ cvs-1.11.1p1/src/login.c   Tue Jul 31 18:17:32 2001
 @@ -322,8 +322,18 @@
      fp = CVS_FOPEN (passfile, "r");
      if (fp == NULL)
      {
 -      error (0, errno, "warning: failed to open %s for reading", passfile);
 -      goto process;
-+      /* The password file doesn't exist yet - probably because it's
-+       * the first time someone uses cvs login. Create it.
-+       */
-+      fp = CVS_FOPEN (passfile, "w");
-+      fclose (fp);
-+      fp = CVS_FOPEN (passfile, "r");
-+      if (fp == NULL)
-+      {
-+       /* Creating the password file didn't work. Bail out. */
-+          error (0, errno, "failed to open %s for reading", passfile);
-+          goto error_exit;
-+      }
++         /* The password file doesn't exist yet - probably because it's
++         * the first time someone uses cvs login. Create it.
++         */
++        fp = CVS_FOPEN (passfile, "w");
++        fclose (fp);
++        fp = CVS_FOPEN (passfile, "r");
++        if (fp == NULL)
++        {
++            /* Creating the password file didn't work. Bail out. */
++            error (0, errno, "warning: failed to open %s for reading", passfile);
++            goto process;
++        }
      }
  
      cvsroot_canonical = normalize_cvsroot (root);
---- cvs-1.11.1p1/src/logmsg.c.bero     Tue Jul 31 18:12:00 2001
-+++ cvs-1.11.1p1/src/logmsg.c  Tue Jul 31 18:12:21 2001
-@@ -247,7 +247,7 @@
-     }
-     (void) fprintf (fp,
--  "%s----------------------------------------------------------------------\n",
-+  "\n%s----------------------------------------------------------------------\n",
-                   CVSEDITPREFIX);
-     (void) fprintf (fp,
-   "%sEnter Log.  Lines beginning with `%.*s' are removed automatically\n%s\n",
This page took 0.030907 seconds and 4 git commands to generate.