mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-29 19:22:28 +01:00
rfc1123Time: increase buffer size for time string
Make sure we can accomodate all possibilities.
This commit is contained in:
parent
0a4cb86976
commit
d98beea894
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…
x
Reference in New Issue
Block a user