diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2022-02-22 17:01:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 22:01:28 +0000 |
commit | 2b8e6958f40ef36c1508118ac36a43694283a83c (patch) | |
tree | fa9a9b6843546bdb297b00bc78b83ab4c318f724 /lualib/lua_content | |
parent | 85faeb34719e2b0898d319b02416f669d70f4562 (diff) | |
download | rspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.tar.gz rspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.zip |
Spelling (#4086)
[Rework] Massive spelling fix from @jsoref
Diffstat (limited to 'lualib/lua_content')
-rw-r--r-- | lualib/lua_content/pdf.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lualib/lua_content/pdf.lua b/lualib/lua_content/pdf.lua index 45c11d3b4..d73c7b1ae 100644 --- a/lualib/lua_content/pdf.lua +++ b/lualib/lua_content/pdf.lua @@ -558,7 +558,7 @@ local function process_action(task, pdf, obj) local extracted_js = maybe_extract_object_stream(js, pdf, task) if not extracted_js then - lua_util.debugm(N, task, 'invalid type for javascript from %s:%s: %s', + lua_util.debugm(N, task, 'invalid type for JavaScript from %s:%s: %s', obj.major, obj.minor, js) else js = extracted_js @@ -571,7 +571,7 @@ local function process_action(task, pdf, obj) lua_util.debugm(N, task, 'extracted javascript from %s:%s: %s', obj.major, obj.minor, obj.js.data) else - lua_util.debugm(N, task, 'invalid type for javascript from %s:%s: %s', + lua_util.debugm(N, task, 'invalid type for JavaScript from %s:%s: %s', obj.major, obj.minor, js) end elseif obj.dict.F then @@ -654,7 +654,7 @@ process_dict = function(task, pdf, obj, dict) if obj.dict.S and obj.dict.JS then obj.type = 'Javascript' - lua_util.debugm(N, task, 'implicit type for Javascript object %s:%s', + lua_util.debugm(N, task, 'implicit type for JavaScript object %s:%s', obj.major, obj.minor) else lua_util.debugm(N, task, 'no type for %s:%s', @@ -757,7 +757,7 @@ process_dict = function(task, pdf, obj, dict) local extracted_js = maybe_extract_object_stream(js, pdf, task) if not extracted_js then - lua_util.debugm(N, task, 'invalid type for javascript from %s:%s: %s', + lua_util.debugm(N, task, 'invalid type for JavaScript from %s:%s: %s', obj.major, obj.minor, js) else js = extracted_js @@ -770,7 +770,7 @@ process_dict = function(task, pdf, obj, dict) lua_util.debugm(N, task, 'extracted javascript from %s:%s: %s', obj.major, obj.minor, obj.js.data) else - lua_util.debugm(N, task, 'invalid type for javascript from %s:%s: %s', + lua_util.debugm(N, task, 'invalid type for JavaScript from %s:%s: %s', obj.major, obj.minor, js) end end @@ -1248,7 +1248,7 @@ local function process_pdf(input, mpart, task) pdf_object.openaction.object.major, pdf_object.openaction.object.minor) table.insert(pdf_output.fuzzy_hashes, pdf_object.openaction.bin_hash) else - lua_util.debugm(N, task, "pdf: skip fuzzy hash from Javascript: %s, too short: %s", + lua_util.debugm(N, task, "pdf: skip fuzzy hash from JavaScript: %s, too short: %s", pdf_object.openaction.hash, #pdf_object.openaction.data) end end @@ -1256,13 +1256,13 @@ local function process_pdf(input, mpart, task) -- All hashes for h,sc in pairs(pdf_object.scripts) do if config.min_js_fuzzy and #sc.data >= config.min_js_fuzzy then - lua_util.debugm(N, task, "pdf: add fuzzy hash from Javascript: %s; size = %s; object: %s:%s", + lua_util.debugm(N, task, "pdf: add fuzzy hash from JavaScript: %s; size = %s; object: %s:%s", sc.hash, #sc.data, sc.object.major, sc.object.minor) table.insert(pdf_output.fuzzy_hashes, h) else - lua_util.debugm(N, task, "pdf: skip fuzzy hash from Javascript: %s, too short: %s", + lua_util.debugm(N, task, "pdf: skip fuzzy hash from JavaScript: %s, too short: %s", sc.hash, #sc.data) end end |