Skip to content

Commit

Permalink
Merge pull request #323 from chronotope/wyhaya-patch-1
Browse files Browse the repository at this point in the history
Add '0' to RFC2822
  • Loading branch information
quodlibetor committed Jun 25, 2019
2 parents 77e2770 + b1592e0 commit 1499de2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/format/mod.rs
Expand Up @@ -553,7 +553,7 @@ pub fn format<'a, I>(
let sec = t.second() + t.nanosecond() / 1_000_000_000;
try!(write!(
result,
"{}, {:2} {} {:04} {:02}:{:02}:{:02} ",
"{}, {:02} {} {:04} {:02}:{:02}:{:02} ",
SHORT_WEEKDAYS[d.weekday().num_days_from_monday() as usize],
d.day(), SHORT_MONTHS[d.month0() as usize], d.year(),
t.hour(), t.minute(), sec
Expand Down
2 changes: 2 additions & 0 deletions src/format/parse.rs
Expand Up @@ -673,6 +673,8 @@ fn test_rfc2822() {
// Test data - (input, Ok(expected result after parse and format) or Err(error code))
let testdates = [
("Tue, 20 Jan 2015 17:35:20 -0800", Ok("Tue, 20 Jan 2015 17:35:20 -0800")), // normal case
("Fri, 2 Jan 2015 17:35:20 -0800", Ok("Fri, 02 Jan 2015 17:35:20 -0800")), // folding whitespace
("Fri, 02 Jan 2015 17:35:20 -0800", Ok("Fri, 02 Jan 2015 17:35:20 -0800")), // leading zero
("20 Jan 2015 17:35:20 -0800", Ok("Tue, 20 Jan 2015 17:35:20 -0800")), // no day of week
("20 JAN 2015 17:35:20 -0800", Ok("Tue, 20 Jan 2015 17:35:20 -0800")), // upper case month
("Tue, 20 Jan 2015 17:35 -0800", Ok("Tue, 20 Jan 2015 17:35:00 -0800")), // no second
Expand Down

0 comments on commit 1499de2

Please sign in to comment.