In iis server, use -1 to specify immediate expiration.
For detailed documentation, please refer to: https://learn.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms525906(v=v...)
From: YongjieYao yaoyongjie@uniontech.com
In iis server, use -1 to specify immediate expiration.
For detailed documentation, please refer to: https://learn.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms525906(v=v...) --- dlls/wininet/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 48bfe35866a..7d5862d3f07 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -4740,7 +4740,7 @@ static BOOL HTTP_ParseDate(LPCWSTR value, FILETIME *ft) { BOOL ret;
- if (!wcscmp(value, L"0")) + if (!wcscmp(value, L"0") || !wcscmp(value, L"-1")) { ft->dwLowDateTime = ft->dwHighDateTime = 0; ret = TRUE;
You should've updated !7323 instead of closing that MR
On Tue Feb 25 07:58:45 2025 +0000, Aida Jonikienė wrote:
You should've updated !7323 instead of closing that MR
Oh, sorry, what should I do now ? Should I reopen !7323 and update it or just keep !7418 ? Which method is better ?
On Tue Feb 25 07:58:45 2025 +0000, Yongjie Yao wrote:
Oh, sorry, what should I do now ? Should I reopen !7323 and update it or just keep !7418 ? Which method is better ?
I guess the former approach is better if the newer MR could be deleted (but if it couldn't, then either way is basically identical)
On Tue Feb 25 08:01:03 2025 +0000, Aida Jonikienė wrote:
I guess the former approach is better if the newer MR could be deleted (but if it couldn't, then either way is basically identical)
Ok, thank you, I try it.
Yeah, let's keep in in that MR.
This merge request was closed by Jacek Caban.