mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Set time locale to POSIX in rfc1123Time so weekday/months in http responses are correct.
This commit is contained in:
parent
b37f09aa2e
commit
9ff411f7f7
5
rpc.cpp
5
rpc.cpp
@ -1498,7 +1498,10 @@ string rfc1123Time()
|
||||
time_t now;
|
||||
time(&now);
|
||||
struct tm* now_gmt = gmtime(&now);
|
||||
strftime(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S %Z", now_gmt);
|
||||
string locale(setlocale(LC_TIME, NULL));
|
||||
setlocale(LC_TIME, "C"); // we want posix (aka "C") weekday/month strings
|
||||
strftime(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S +0000", now_gmt);
|
||||
setlocale(LC_TIME, locale.c_str());
|
||||
return string(buffer);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user