rfc1123Time: increase buffer size for time string
Make sure we can accomodate all possibilities.
This commit is contained in:
parent
0a4cb86976
commit
d98beea894
1 changed files with 1 additions and 1 deletions
2
rpc.cpp
2
rpc.cpp
|
@ -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…
Reference in a new issue