diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-04-06 09:54:17 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-04-06 09:54:17 +0000 |
| commit | dab8ffaac3d0c9d1968744cc1ab485283acfcf5a (patch) | |
| tree | 05ae18810be5cbebdebe0baf1bd5f81860ea3a9f | |
| parent | a5cf1da8f865257ada95b73202ef6a90f1635277 (diff) | |
Notes
| -rw-r--r-- | lib/libc/net/ether_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/net/ether_addr.c b/lib/libc/net/ether_addr.c index 1651f4c2a3eec..9f3f6c4f8ca1e 100644 --- a/lib/libc/net/ether_addr.c +++ b/lib/libc/net/ether_addr.c @@ -121,7 +121,7 @@ char i = sprintf(a,"%02x:%02x:%02x:%02x:%02x:%02x", n->octet[0],n->octet[1],n->octet[2], n->octet[3],n->octet[4],n->octet[5]); - if (i < 11) + if (i < 17) return (NULL); return ((char *)&a); } |
