cvs-cvs
[Top][All Lists]
Advanced

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

[Cvs-cvs] Changes to ccvs/src/server.c [cvs1-11-x-branch]


From: Derek Robert Price
Subject: [Cvs-cvs] Changes to ccvs/src/server.c [cvs1-11-x-branch]
Date: Thu, 22 Sep 2005 14:13:39 -0400

Index: ccvs/src/server.c
diff -u ccvs/src/server.c:1.284.2.40 ccvs/src/server.c:1.284.2.41
--- ccvs/src/server.c:1.284.2.40        Fri Sep  2 19:37:35 2005
+++ ccvs/src/server.c   Thu Sep 22 18:13:28 2005
@@ -1684,7 +1684,9 @@
             * is allowed, but broken versions of WinCVS & TortoiseCVS rely on
             * this behavior.
             */
-           *timefield = '=';
+           if (*timefield != '+')
+               /* Skip this for entries with conflict markers.  */
+               *timefield = '=';
            break;
        }
     }
@@ -1755,7 +1757,10 @@
             * is allowed, but broken versions of WinCVS & TortoiseCVS rely on
             * this behavior.
             */
-           *timefield = 'M';
+           if (*timefield != '+')
+               /* Skip this for entries with conflict markers.  */
+               *timefield = 'M';
+
            if (kopt != NULL)
            {
                if (alloc_pending (strlen (name) + 80))




reply via email to

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