Browse Source

mdoc prefers `\e' as an escape character.

OPENBSD_2_9
aaron 23 years ago
parent
commit
a23c3559c4
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/lib/libc/hash/rmd160.3
  2. +2
    -2
      src/lib/libc/hash/sha1.3

+ 2
- 2
src/lib/libc/hash/rmd160.3 View File

@ -1,4 +1,4 @@
.\" $OpenBSD: rmd160.3,v 1.12 2000/04/18 03:01:29 aaron Exp $
.\" $OpenBSD: rmd160.3,v 1.13 2000/12/21 17:34:33 aaron Exp $
.\"
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
@ -172,7 +172,7 @@ RMD160Final(results, &rmd);
printf("0x");
for (n = 0; n < 20; n++)
printf("%02x", results[n]);
putchar('\\n');
putchar('\en');
.Ed
.Pp
Alternately, the helper functions could be used in the following way:


+ 2
- 2
src/lib/libc/hash/sha1.3 View File

@ -1,4 +1,4 @@
.\" $OpenBSD: sha1.3,v 1.18 2000/04/18 03:01:29 aaron Exp $
.\" $OpenBSD: sha1.3,v 1.19 2000/12/21 17:34:33 aaron Exp $
.\"
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
@ -168,7 +168,7 @@ SHA1Final(results, &sha);
printf("0x");
for (n = 0; n < 20; n++)
printf("%02x", results[n]);
putchar('\\n');
putchar('\en');
.Ed
.Pp
Alternately, the helper functions could be used in the following way:


Loading…
Cancel
Save