diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2001-01-04 21:45:32 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2001-01-04 21:45:32 +0000 |
commit | ebdab6e39946f9d6628de8758207f7092fe842eb (patch) | |
tree | 969f1cab24b7d27b320d6b3f9f6a0f38b2cdc9d6 /lib/libc/net | |
parent | a8065711c2928c212e57fd0cd80708e15c56e5fc (diff) |
grammer/spelling
Diffstat (limited to 'lib/libc/net')
-rw-r--r-- | lib/libc/net/ipx_addr.c | 4 | ||||
-rw-r--r-- | lib/libc/net/ns_addr.c | 4 | ||||
-rw-r--r-- | lib/libc/net/res_random.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/net/ipx_addr.c b/lib/libc/net/ipx_addr.c index a76e03e913c..9c9fe651cd6 100644 --- a/lib/libc/net/ipx_addr.c +++ b/lib/libc/net/ipx_addr.c @@ -37,7 +37,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ipx_addr.c,v 1.3 1997/07/09 01:08:39 millert Exp $"; +static char rcsid[] = "$OpenBSD: ipx_addr.c,v 1.4 2001/01/04 21:45:30 todd Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -64,7 +64,7 @@ ipx_addr(name) * First, figure out what he intends as a field separtor. * Despite the way this routine is written, the prefered * form 2-272.AA001234H.01777, i.e. XDE standard. - * Great efforts are made to insure backward compatability. + * Great efforts are made to insure backward compatibility. */ if ((hostname = strchr(buf, '#'))) separator = '#'; diff --git a/lib/libc/net/ns_addr.c b/lib/libc/net/ns_addr.c index 8f2e4bc513c..e44ac211957 100644 --- a/lib/libc/net/ns_addr.c +++ b/lib/libc/net/ns_addr.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ns_addr.c,v 1.4 1997/07/21 20:31:05 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ns_addr.c,v 1.5 2001/01/04 21:45:31 todd Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -63,7 +63,7 @@ ns_addr(name) * First, figure out what he intends as a field separtor. * Despite the way this routine is written, the prefered * form 2-272.AA001234H.01777, i.e. XDE standard. - * Great efforts are made to insure backward compatability. + * Great efforts are made to insure backward compatibility. */ if ((hostname = strchr(buf, '#'))) separator = '#'; diff --git a/lib/libc/net/res_random.c b/lib/libc/net/res_random.c index ef768a7348c..a11241246d1 100644 --- a/lib/libc/net/res_random.c +++ b/lib/libc/net/res_random.c @@ -1,4 +1,4 @@ -/* $OpenBSD: res_random.c,v 1.8 1999/08/26 13:38:10 provos Exp $ */ +/* $OpenBSD: res_random.c,v 1.9 2001/01/04 21:45:31 todd Exp $ */ /* * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> @@ -125,7 +125,7 @@ pmod(gen, exp, mod) } /* - * Initalizes the seed and chooses a suitable generator. Also toggles + * Initializes the seed and chooses a suitable generator. Also toggles * the msb flag. The msb flag is used to generate two distinct * cycles of random numbers and thus avoiding reuse of ids. * |