]> git.donarmstrong.com Git - debbugs.git/commitdiff
* Fix cloned bugs being wrongly set up as blockers
authorDebian BTS <debbugs@spohr>
Sat, 12 Aug 2006 00:08:19 +0000 (17:08 -0700)
committerDebian BTS <debbugs@spohr>
Sat, 12 Aug 2006 00:08:19 +0000 (17:08 -0700)
 * Use RFC compliant dates in headers

debian/changelog
scripts/process.in
scripts/service.in

index af1d1265a13565ff456dfe4a7924d1146eae32cf..2cc915aacce359a01845f0d52fb5a3c618762384 100644 (file)
@@ -123,6 +123,7 @@ debbugs (2.4.2) UNRELEASED; urgency=low
     - Don't lc owner or forwarded at submit time (closes: #288384)
     - Explain how to close bugs in the ack message (closes: #37605)
     - Make the moreinfo ack more general (closes: #70810)
+    - Use RFC compliant dates in headers (closes: #362935)
 
   
  -- Colin Watson <cjwatson@debian.org>  Fri, 20 Jun 2003 18:57:25 +0100
index f7f72a6672ea3e698f8b69fff54e7f961d9de6ff..5cd9f1358f35bc95599685dfdd6962e1ba002bea 100755 (executable)
@@ -64,7 +64,7 @@ chomp @msg;
 
 print DEBUG "###\n",join("##\n",@msg),"\n###\n";
 
-my $tdate = strftime "%a, %d %h %Y %T UTC", gmtime;
+my $tdate = strftime "%a, %d %h %Y %T +0000", gmtime;
 my $fwd= <<END;
 Received: via spool by $baddress\@$gEmailDomain id=$nn
           (code $codeletter ref $tryref); $tdate
index d1c6e9015146550e8a39e4b5f98d742b8e15a061..d7f58ba680e5b9d5667eb29dffb1d98f70a33673 100755 (executable)
@@ -734,7 +734,7 @@ END
                     $ref = $clonebugs{$ref};
                }
                if (&getbug) {
-                   push @okayblockers, $b;
+                   push @okayblockers, $ref;
 
                    # add to the list all bugs that are merged with $b,
                    # because all of their data must be kept in sync
@@ -750,7 +750,7 @@ END
                }
                else {
                    &notfoundbug;
-                    push @badblockers, $b;
+                    push @badblockers, $ref;
                }
            }
            else {