1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Description: fix typos in snowdrop.c
Fixed some typos related to program output in snowdrop.c.
Author: Simon Kainz <simon@familiekainz.at>
Author: David da Silva Polverari <david.polverari@gmail.com>
Forwarded: no
Last-Update: 2025-09-12
--- a/snowdrop.c
+++ b/snowdrop.c
@@ -102,7 +102,7 @@
"Third method (-i) enables watermark injection mode. File 'origfile' is\n"
"modified and saved as 'newfile'. Mandatory parameter is the recipient\n"
- "identifier. Optional comment can be added for your refernece.\n\n"
+ "identifier. Optional comment can be added for your reference.\n\n"
"Additional parameter -6 enables strong, 64-bit watermarking that is suitable\n"
"for providing public documentation of watermarked document abuse.\n\n");
@@ -507,9 +507,9 @@
debug("[+] Constructed an uniform stream of %d bits.\n",bigpos);
if (trd)
- debug(" Overall retreived : %d bits (%0.02f%%)\n",trd,((float)(trd))*100.0/((float)tots));
+ debug(" Overall retrieved : %d bits (%0.02f%%)\n",trd,((float)(trd))*100.0/((float)tots));
else
- debug(" Overall retreived : 0 bits (n/a)\n");
+ debug(" Overall retrieved : 0 bits (n/a)\n");
if (cap[0])
debug(" Whitespace channel : %d bits (%0.02f%%)\n",rd[0],((float)(rd[0]))*100.0/((float)cap[0]));
|