From d28374b3f95680e27b3c533f19020943674610b6 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Mon, 16 Dec 2019 10:03:59 +0100 Subject: [PATCH] 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. --- .../man3/crypto_sign_init_first_pass_custom_hash.3monocypher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.47.3