diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-11 03:06:07 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-11 03:06:07 +0000 |
commit | be54781fcd88e2217974698f2bbf7ab7fe46c767 (patch) | |
tree | c4744a25abda10c25d94f966345436db36c8b107 /lib | |
parent | 4cdd0b2dfb5e0e8314c93edf99f0b2fe73c3ebe4 (diff) |
more unescaped \n lines in nroff documents
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/unvis.3 | 6 | ||||
-rw-r--r-- | lib/libc/hash/rmd160.3 | 4 | ||||
-rw-r--r-- | lib/libc/hash/sha1.3 | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/gen/unvis.3 b/lib/libc/gen/unvis.3 index 84d7fcdcfe7..a10e539324f 100644 --- a/lib/libc/gen/unvis.3 +++ b/lib/libc/gen/unvis.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: unvis.3,v 1.9 1999/07/09 13:35:19 aaron Exp $ +.\" $OpenBSD: unvis.3,v 1.10 1999/08/11 03:06:06 deraadt Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -150,8 +150,8 @@ again: (void) putchar(out); goto again; case UNVIS_SYNBAD: - (void)fprintf(stderr, "bad sequence!\n"); - exit(1); + (void)fprintf(stderr, "bad sequence!\en"); + exit(1); } } if (unvis(&out, (char)0, &state, UNVIS_END) == UNVIS_VALID) diff --git a/lib/libc/hash/rmd160.3 b/lib/libc/hash/rmd160.3 index 9978b67e486..03cd1f3d133 100644 --- a/lib/libc/hash/rmd160.3 +++ b/lib/libc/hash/rmd160.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rmd160.3,v 1.10 1999/07/09 13:35:20 aaron Exp $ +.\" $OpenBSD: rmd160.3,v 1.11 1999/08/11 03:06:06 deraadt Exp $ .\" .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" All rights reserved. @@ -178,7 +178,7 @@ RMD160_CTX rmd; u_char output[41]; char *buf = "abc"; -printf("0x%s\n", RMD160Data(buf, strlen(buf), output)); +printf("0x%s\en", RMD160Data(buf, strlen(buf), output)); .Ed .Sh CAVEATS If a message digest is to be copied to a multi-byte type (ie: diff --git a/lib/libc/hash/sha1.3 b/lib/libc/hash/sha1.3 index 0e94679e93a..bf27f04645d 100644 --- a/lib/libc/hash/sha1.3 +++ b/lib/libc/hash/sha1.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sha1.3,v 1.15 1999/07/09 13:35:20 aaron Exp $ +.\" $OpenBSD: sha1.3,v 1.16 1999/08/11 03:06:06 deraadt Exp $ .\" .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" All rights reserved. @@ -175,7 +175,7 @@ SHA1_CTX sha; u_char output[41]; char *buf = "abc"; -printf("0x%s\n", SHA1Data(buf, strlen(buf), output)); +printf("0x%s\en", SHA1Data(buf, strlen(buf), output)); .Ed .Sh CAVEATS This implementation of SHA-1 has not been validated by NIST |