cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] Changes to ccvs/src/root.c [signed-commits]


From: Derek Robert Price
Subject: [Cvs-cvs] Changes to ccvs/src/root.c [signed-commits]
Date: Fri, 14 Oct 2005 21:39:37 -0400

Index: ccvs/src/root.c
diff -u ccvs/src/root.c:1.119.2.2 ccvs/src/root.c:1.119.2.3
--- ccvs/src/root.c:1.119.2.2   Fri Oct 14 16:45:51 2005
+++ ccvs/src/root.c     Sat Oct 15 01:39:24 2005
@@ -580,7 +580,7 @@
        while ((p = strtok (NULL, ";")))
        {
            char *q = strchr (p, '=');
-           if (!q && (strcasecmp (p, "sign") || strcasecmp (p, "nosign")))
+           if (!q && (strcasecmp (p, "sign") || strcasecmp (p, "no-sign")))
            {
                error (0, 0, "Option (`%s') has no argument in CVSROOT.",
                        p);
@@ -616,7 +616,7 @@
            {
                if (!q)
                    newroot->sign = SIGN_ALWAYS;
-               else if (!strcasecmp (q, "default"))
+               else if (!strcasecmp (q, "auto") || !strcasecmp (q, "server"))
                    newroot->sign = SIGN_DEFAULT;
                else
                {
@@ -632,7 +632,7 @@
                        goto error_exit;
                }
            }
-           else if (!strcasecmp (p, "nosign"))
+           else if (!strcasecmp (p, "no-sign"))
                newroot->sign = SIGN_NEVER;
            else if (!strcasecmp (p, "sign-template"))
                newroot->sign_template = xstrdup (q);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]