mod_http_upload: Fix logging of file size mismatch

This commit is contained in:
Holger Weiss 2016-01-04 01:01:14 +01:00
parent fc013442bb
commit 94c620cc27
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ process([_UserDir, _RandDir, _FileName] = Slot,
[Path, ?ADDR_TO_STR(IP), Host, ?FORMAT(Error)]),
http_response(Host, 500)
end;
{ok, Size, Path} ->
{ok, Size, Path, _FileMode, _DirMode, _GetPrefix, _Thumbnail} ->
?INFO_MSG("Rejecting file ~s from ~s for ~s: Size is ~B, not ~B",
[Path, ?ADDR_TO_STR(IP), Host, byte_size(Data), Size]),
http_response(Host, 413);