diff options
author | lteo <> | 2014-03-18 03:58:49 +0000 |
---|---|---|
committer | lteo <> | 2014-03-18 03:58:49 +0000 |
commit | c74788490dc35ac7f27276f94af13e1e707b039c (patch) | |
tree | 0295818c1a2bc562b379c998bd9ad01e0607f3c4 /src | |
parent | 24f86b9a50c6ac98e07bd3171a559924ecaeb02e (diff) | |
download | openbsd-c74788490dc35ac7f27276f94af13e1e707b039c.tar.gz openbsd-c74788490dc35ac7f27276f94af13e1e707b039c.tar.bz2 openbsd-c74788490dc35ac7f27276f94af13e1e707b039c.zip |
Sync with the way struct ether_addr is actually defined in
netinet/if_ether.h
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/net/ethers.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/net/ethers.3 b/src/lib/libc/net/ethers.3 index f14ad6d3f5..c254a120a7 100644 --- a/src/lib/libc/net/ethers.3 +++ b/src/lib/libc/net/ethers.3 | |||
@@ -1,8 +1,8 @@ | |||
1 | .\" $OpenBSD: ethers.3,v 1.22 2013/06/05 03:39:22 tedu Exp $ | 1 | .\" $OpenBSD: ethers.3,v 1.23 2014/03/18 03:58:49 lteo Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Written by roland@frob.com. Public domain. | 3 | .\" Written by roland@frob.com. Public domain. |
4 | .\" | 4 | .\" |
5 | .Dd $Mdocdate: June 5 2013 $ | 5 | .Dd $Mdocdate: March 18 2014 $ |
6 | .Dt ETHERS 3 | 6 | .Dt ETHERS 3 |
7 | .Os | 7 | .Os |
8 | .Sh NAME | 8 | .Sh NAME |
@@ -33,7 +33,7 @@ Ethernet addresses are represented by the | |||
33 | following structure: | 33 | following structure: |
34 | .Bd -literal -offset indent | 34 | .Bd -literal -offset indent |
35 | struct ether_addr { | 35 | struct ether_addr { |
36 | u_int8_t ether_addr_octet[6]; | 36 | u_int8_t ether_addr_octet[ETHER_ADDR_LEN]; |
37 | }; | 37 | }; |
38 | .Ed | 38 | .Ed |
39 | .Pp | 39 | .Pp |