Added missing ,

Signed-off-by: Tyrolyean <tyrolyean@tyrolyean.net>
This commit is contained in:
Tyrolyean 2020-04-28 19:16:28 +02:00
parent f280420c2f
commit b2cc23cafa
No known key found for this signature in database
GPG Key ID: 81EC9BAC5E9667C6
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ char* attach_files(char* message, size_t len){
printf("Received message header: [%.*s]\n", email.header_len,
email.message);
printf("Received message body: [%.*s]\n",
email.message_length-email.body_offset
email.message_length-email.body_offset,
email.message + email.body_offset);
/* Now we have a null terminated body which we can edit! */