From 090c55dd7bd1a4b13656a59778f4dc82c0132b2f Mon Sep 17 00:00:00 2001 From: tyrolyean Date: Thu, 30 Apr 2020 01:44:35 +0200 Subject: [PATCH] Corrected from output Signed-off-by: tyrolyean --- src/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/file.c b/src/file.c index 1c88858..576a38e 100644 --- a/src/file.c +++ b/src/file.c @@ -142,8 +142,8 @@ int base64_decode_file(const char* directory, const struct email_t* mail){ return -1; } if(verbose){ - printf("Storing base64 file len %lu top [%s]\n", - dec_len, decoded); + printf("Storing base64 file len %lu to [%s]\n", + dec_len, filename); } fwrite(decoded, dec_len, 1, outfile);