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

[dak/security] debianqueued: Fix a brown-paper-bag bug (we just dont know who to assign tthe month name.he bag too). strftime %b is better than %B for



---
 tools/debianqueued-0.9/ChangeLog    |    6 ++++++
 tools/debianqueued-0.9/debianqueued |    2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/tools/debianqueued-0.9/ChangeLog b/tools/debianqueued-0.9/ChangeLog
index 154ee60..ddf99f2 100644
--- a/tools/debianqueued-0.9/ChangeLog
+++ b/tools/debianqueued-0.9/ChangeLog
@@ -1,3 +1,9 @@
+2008-06-15  Joerg Jaspert  <joerg@debian.org>
+
+	* debianqueued: Fix a brown-paper-bag bug (we just dont know who
+	to assign the bag too). strftime %b is better than %B for
+	the month name.
+
 2008-06-14  Joerg Jaspert  <joerg@debian.org>
 
 	* debianqueued (process_commands): Add a little note that one
diff --git a/tools/debianqueued-0.9/debianqueued b/tools/debianqueued-0.9/debianqueued
index 07f3784..410e571 100755
--- a/tools/debianqueued-0.9/debianqueued
+++ b/tools/debianqueued-0.9/debianqueued
@@ -2134,7 +2134,7 @@ sub send_mail($$$) {
 		$Email::Send::Sendmail::SENDMAIL = $conf::mail;
 	}
 
-	my $date = sprintf "%s", strftime("%a, %d %B %Y %T %z", (localtime(time)));
+	my $date = sprintf "%s", strftime("%a, %d %b %Y %T %z", (localtime(time)));
 	my $message = <<__MESSAGE__;
 To: $addr
 From: Archive Administrator <dak\@ftp-master.debian.org>
-- 
1.5.6.5



Reply to: