Browse Source

rfc1123Time: increase buffer size for time string

Make sure we can accomodate all possibilities.
0.8
Jeff Garzik 13 years ago committed by Jeff Garzik
parent
commit
d98beea894
  1. 2
      rpc.cpp

2
rpc.cpp

@ -1486,7 +1486,7 @@ string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeader @@ -1486,7 +1486,7 @@ string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeader
string rfc1123Time()
{
char buffer[32];
char buffer[64];
time_t now;
time(&now);
struct tm* now_gmt = gmtime(&now);

Loading…
Cancel
Save