commit 7f3378ed360a5c799cb8595756053819c8146cc4
parent 1c195105aa3163c7ce0353fd3d1c94b2da4415a7
Author: Jan Pobříslo <ccx@te2000.cz>
Date: Tue, 30 Aug 2022 20:59:28 +0200
Fix double-base64 encoding issue
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/fileset.awk b/bin/fileset.awk
@@ -191,7 +191,7 @@ function process_statement() {
func_name = "fn" func_num++
if(cchar ~ /[bB]/) {
- funcs[func_name] = "\tbase64 <<<"quoted(content)
+ funcs[func_name] = "\tbase64 -d <<<"quoted(content)
} else if(cchar ~ /[X]/) {
funcs[func_name] = "\txxd -r <<<"quoted(content)
} else {