cvs-cvs
[Top][All Lists]
Advanced

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

[Cvs-cvs] [Fwd: Mail delivery failed: returning message to sender]


From: Derek Price
Subject: [Cvs-cvs] [Fwd: Mail delivery failed: returning message to sender]
Date: Wed, 07 May 2008 22:51:22 -0400
User-agent: Thunderbird 2.0.0.14 (Windows/20080421)


--
Derek R. Price
Solutions Architect
Ximbiot, LLC <http://ximbiot.com>
Get CVS and Subversion Support from Ximbiot!

v: +1 248.835.1260
f: +1 248.246.1176
--- Begin Message --- Subject: Mail delivery failed: returning message to sender Date: Wed, 07 May 2008 12:04:39 -0400
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  address@hidden
    Your message is too large. Please refrain from sending messages over 200K 
in size to the mailing lists @lists.gnu.org

------ This is a copy of the message, including all the headers. ------

Return-path: <address@hidden>
Received: from savannah.gnu.org ([199.232.41.3] helo=sv.gnu.org)
        by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32)
        (Exim 4.60)
        (envelope-from <address@hidden>)
        id 1Jtm8F-000670-L9
        for address@hidden; Wed, 07 May 2008 12:04:39 -0400
Received: from cvs.savannah.gnu.org ([199.232.41.69])
        by sv.gnu.org with esmtp (Exim 4.63)
        (envelope-from <address@hidden>)
        id 1Jtm8E-0007Mm-HG
        for address@hidden; Wed, 07 May 2008 16:04:38 +0000
Received: from dprice by cvs.savannah.gnu.org with local (Exim 4.63)
        (envelope-from <address@hidden>)
        id 1Jtm8E-0007Mj-9s
        for address@hidden; Wed, 07 May 2008 16:04:38 +0000
To: address@hidden
Subject: ccvs/src ChangeLog vers_ts.c
Message-Id: <address@hidden>
From: Derek Robert Price <address@hidden>
Date: Wed, 07 May 2008 16:04:38 +0000
X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3)

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Derek Robert Price <dprice>     08/05/07 16:04:37

Modified files:
        src            : ChangeLog vers_ts.c 

Log message:
        Merge changes from 1.11.x.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/src/ChangeLog?cvsroot=cvs&r1=1.3561&r2=1.3562
http://cvs.savannah.gnu.org/viewcvs/ccvs/src/vers_ts.c?cvsroot=cvs&r1=1.72&r2=1.73

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/ChangeLog,v
retrieving revision 1.3561
retrieving revision 1.3562
diff -u -b -r1.3561 -r1.3562
--- ChangeLog   11 Mar 2008 00:33:11 -0000      1.3561
+++ ChangeLog   7 May 2008 16:04:36 -0000       1.3562
@@ -1,3 +1,9 @@
+2008-03-23  Mark D. Baushke  <address@hidden>
+
+       [bug #22710]
+       * vers_ts.c (time_stamp): Use computed minimum mtime for symlink.
+       (Patch suggested by Nelson B Bolyard <address@hidden>.)
+
 2008-03-10  Mark D. Baushke  <address@hidden>
 
        * mkmodules.c, parseinfo.c: Update copyright.

Index: vers_ts.c
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/vers_ts.c,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -b -r1.72 -r1.73
--- vers_ts.c   13 Dec 2007 16:02:06 -0000      1.72
+++ vers_ts.c   7 May 2008 16:04:37 -0000       1.73
@@ -346,22 +346,7 @@
     }
     else
     {
-        struct tm *tm_p;
-
-       vers_ts->ts_user = xmalloc (25);
-       /* We want to use the same timestamp format as is stored in the
-          st_mtime.  For unix (and NT I think) this *must* be universal
-          time (UT), so that files don't appear to be modified merely
-          because the timezone has changed.  For VMS, or hopefully other
-          systems where gmtime returns NULL, the modification time is
-          stored in local time, and therefore it is not possible to cause
-          st_mtime to be out of sync by changing the timezone.  */
-       tm_p = gmtime (&sb.st_mtime);
-       cp = tm_p ? asctime (tm_p) : ctime (&sb.st_mtime);
-       cp[24] = 0;
-       /* Fix non-standard format.  */
-       if (cp[8] == '0') cp[8] = ' ';
-       (void) strcpy (vers_ts->ts_user, cp);
+       vers_ts->ts_user = entries_time (sb.st_mtime);
     }
 }
 

--- End Message ---

reply via email to

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