aboutsummaryrefslogtreecommitdiff
path: root/lib/libipx
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-02-20 10:23:10 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-02-20 10:23:10 +0000
commitaae101bd15dcba7d84ad56cfcc531266e3bb034d (patch)
tree255a2d962b5c583790db7aa1dfa4a61cdd03979f /lib/libipx
parent5bfc1e7c34fb175cba33242bf46b00f469454fa6 (diff)
Notes
Diffstat (limited to 'lib/libipx')
-rw-r--r--lib/libipx/ipx_addr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libipx/ipx_addr.c b/lib/libipx/ipx_addr.c
index 52312f3d1d5d..693593821040 100644
--- a/lib/libipx/ipx_addr.c
+++ b/lib/libipx/ipx_addr.c
@@ -61,10 +61,10 @@ ipx_addr(name)
buf[sizeof(buf) - 1] = '\0';
/*
- * First, figure out what he intends as a field separtor.
- * Despite the way this routine is written, the prefered
+ * First, figure out what he intends as a field separator.
+ * Despite the way this routine is written, the preferred
* form 2-272.AA001234H.01777, i.e. XDE standard.
- * Great efforts are made to insure backward compatibility.
+ * Great efforts are made to ensure backwards compatibility.
*/
if ( (hostname = strchr(buf, '#')) )
separator = '#';
@@ -134,7 +134,7 @@ Field(buf, out, len)
}
/*
* This is REALLY stretching it but there was a
- * comma notation separting shorts -- definitely non standard
+ * comma notation separating shorts -- definitely non-standard
*/
if (1 < (i = sscanf(buf,"%x,%x,%x",
&hb[0], &hb[1], &hb[2]))) {