run cargo fmt

This commit is contained in:
jikstra
2019-08-07 20:57:58 +02:00
parent 9034f316ba
commit 925759a922

View File

@@ -343,16 +343,16 @@ pub unsafe fn dc_e2ee_encrypt(
} }
} }
} }
// ok_to_continue = false = 14181132614457621749 // ok_to_continue = false = 14181132614457621749
if ok_to_continue { if ok_to_continue {
let aheader = Aheader::new(addr, public_key, prefer_encrypt); let aheader = Aheader::new(addr, public_key, prefer_encrypt);
mailimf_fields_add( mailimf_fields_add(
imffields_unprotected, imffields_unprotected,
mailimf_field_new_custom( mailimf_field_new_custom(
"Autocrypt".strdup(), "Autocrypt".strdup(),
aheader.to_string().strdup(), aheader.to_string().strdup(),
), ),
); );
} }
} }
} }