]> git.codecow.com Git - Monocypher.git/commitdiff
Revert "Fixed typo in manual"
authorLoup Vaillant <loup@loup-vaillant.fr>
Mon, 16 Dec 2019 09:03:59 +0000 (10:03 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Mon, 16 Dec 2019 09:03:59 +0000 (10:03 +0100)
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.

doc/man/man3/crypto_sign_init_first_pass_custom_hash.3monocypher

index 3f9b35cd045f612cfe355a14f69cba0ca2170a10..1f9d61a96d57d9260e10add85e00cad51dab89bf 100644 (file)
@@ -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");