From: Loup Vaillant Date: Mon, 16 Dec 2019 09:03:59 +0000 (+0100) Subject: Revert "Fixed typo in manual" X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=d28374b3f95680e27b3c533f19020943674610b6;p=Monocypher.git Revert "Fixed typo in manual" This reverts commit 9e362871bea3850a657e36145f6d3d667e0c921c. I didn't fixed anything, I was destroying a perfectly fine escape sequence! Lesson learned: Roff doesn't ignore escape sequences in code snippets. --- diff --git a/doc/man/man3/crypto_sign_init_first_pass_custom_hash.3monocypher b/doc/man/man3/crypto_sign_init_first_pass_custom_hash.3monocypher index 3f9b35c..1f9d61a 100644 --- a/doc/man/man3/crypto_sign_init_first_pass_custom_hash.3monocypher +++ b/doc/man/man3/crypto_sign_init_first_pass_custom_hash.3monocypher @@ -223,7 +223,7 @@ main(void) crypto_sign_final( (void*)&ctx, mine); if (crypto_verify64(theirs, mine) != 0) { - fprintf(stderr, "theirs != mine\n"); + fprintf(stderr, "theirs != mine\en"); return 1; } puts("ok");