diff options
author | kris <kris@FreeBSD.org> | 2001-02-20 10:23:10 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-02-20 10:23:10 +0000 |
commit | 4dc4c3edc5a2de76acb7546afecc41bc9275e193 (patch) | |
tree | dea4ce9dd3d865cb56962925aa28c8f57416b954 /lib/libipx | |
parent | db4272d3a71a97d5015a740ee789c717d4d49701 (diff) | |
download | FreeBSD-src-4dc4c3edc5a2de76acb7546afecc41bc9275e193.zip FreeBSD-src-4dc4c3edc5a2de76acb7546afecc41bc9275e193.tar.gz |
Correct comment typos
Diffstat (limited to 'lib/libipx')
-rw-r--r-- | lib/libipx/ipx_addr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libipx/ipx_addr.c b/lib/libipx/ipx_addr.c index 52312f3..6935938 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]))) { |