summaryrefslogtreecommitdiff
path: root/src/lib/libc/net
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/net')
-rw-r--r--src/lib/libc/net/ipx_addr.c4
-rw-r--r--src/lib/libc/net/ns_addr.c4
-rw-r--r--src/lib/libc/net/res_random.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libc/net/ipx_addr.c b/src/lib/libc/net/ipx_addr.c
index a76e03e913..9c9fe651cd 100644
--- a/src/lib/libc/net/ipx_addr.c
+++ b/src/lib/libc/net/ipx_addr.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#if defined(LIBC_SCCS) && !defined(lint) 39#if defined(LIBC_SCCS) && !defined(lint)
40static char rcsid[] = "$OpenBSD: ipx_addr.c,v 1.3 1997/07/09 01:08:39 millert Exp $"; 40static char rcsid[] = "$OpenBSD: ipx_addr.c,v 1.4 2001/01/04 21:45:30 todd Exp $";
41#endif /* LIBC_SCCS and not lint */ 41#endif /* LIBC_SCCS and not lint */
42 42
43#include <sys/param.h> 43#include <sys/param.h>
@@ -64,7 +64,7 @@ ipx_addr(name)
64 * First, figure out what he intends as a field separtor. 64 * First, figure out what he intends as a field separtor.
65 * Despite the way this routine is written, the prefered 65 * Despite the way this routine is written, the prefered
66 * form 2-272.AA001234H.01777, i.e. XDE standard. 66 * form 2-272.AA001234H.01777, i.e. XDE standard.
67 * Great efforts are made to insure backward compatability. 67 * Great efforts are made to insure backward compatibility.
68 */ 68 */
69 if ((hostname = strchr(buf, '#'))) 69 if ((hostname = strchr(buf, '#')))
70 separator = '#'; 70 separator = '#';
diff --git a/src/lib/libc/net/ns_addr.c b/src/lib/libc/net/ns_addr.c
index 8f2e4bc513..e44ac21195 100644
--- a/src/lib/libc/net/ns_addr.c
+++ b/src/lib/libc/net/ns_addr.c
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#if defined(LIBC_SCCS) && !defined(lint) 37#if defined(LIBC_SCCS) && !defined(lint)
38static char rcsid[] = "$OpenBSD: ns_addr.c,v 1.4 1997/07/21 20:31:05 deraadt Exp $"; 38static char rcsid[] = "$OpenBSD: ns_addr.c,v 1.5 2001/01/04 21:45:31 todd Exp $";
39#endif /* LIBC_SCCS and not lint */ 39#endif /* LIBC_SCCS and not lint */
40 40
41#include <sys/param.h> 41#include <sys/param.h>
@@ -63,7 +63,7 @@ ns_addr(name)
63 * First, figure out what he intends as a field separtor. 63 * First, figure out what he intends as a field separtor.
64 * Despite the way this routine is written, the prefered 64 * Despite the way this routine is written, the prefered
65 * form 2-272.AA001234H.01777, i.e. XDE standard. 65 * form 2-272.AA001234H.01777, i.e. XDE standard.
66 * Great efforts are made to insure backward compatability. 66 * Great efforts are made to insure backward compatibility.
67 */ 67 */
68 if ((hostname = strchr(buf, '#'))) 68 if ((hostname = strchr(buf, '#')))
69 separator = '#'; 69 separator = '#';
diff --git a/src/lib/libc/net/res_random.c b/src/lib/libc/net/res_random.c
index ef768a7348..a11241246d 100644
--- a/src/lib/libc/net/res_random.c
+++ b/src/lib/libc/net/res_random.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: res_random.c,v 1.8 1999/08/26 13:38:10 provos Exp $ */ 1/* $OpenBSD: res_random.c,v 1.9 2001/01/04 21:45:31 todd Exp $ */
2 2
3/* 3/*
4 * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> 4 * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@@ -125,7 +125,7 @@ pmod(gen, exp, mod)
125} 125}
126 126
127/* 127/*
128 * Initalizes the seed and chooses a suitable generator. Also toggles 128 * Initializes the seed and chooses a suitable generator. Also toggles
129 * the msb flag. The msb flag is used to generate two distinct 129 * the msb flag. The msb flag is used to generate two distinct
130 * cycles of random numbers and thus avoiding reuse of ids. 130 * cycles of random numbers and thus avoiding reuse of ids.
131 * 131 *