Skip to content

Commit

Permalink
[fix] Oops. Copy pasta mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
Southern committed Jul 11, 2013
1 parent 957cef8 commit 9bf278c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/x509.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ Handle<String> parse_date(char *date) {
output = String::Concat(output, String::Concat(String::New("20"), dateArray->Get(0)->ToString()));
output = String::Concat(output, String::New(" "));
output = String::Concat(output, String::Concat(dateArray->Get(3)->ToString(), String::New(":")));
output = String::Concat(output, String::Concat(dateArray->Get(3)->ToString(), String::New(":")));
output = String::Concat(output, String::Concat(dateArray->Get(3)->ToString(), String::New(" GMT")));
output = String::Concat(output, String::Concat(dateArray->Get(4)->ToString(), String::New(":")));
output = String::Concat(output, String::Concat(dateArray->Get(5)->ToString(), String::New(" GMT")));

return scope.Close(output);
}
Expand Down

0 comments on commit 9bf278c

Please sign in to comment.