diff options
author | 2019-11-28 03:08:21 +0000 | |
---|---|---|
committer | 2019-11-28 03:08:21 +0000 | |
commit | 258e938fc1ef2ddf67f96dffc1c4617e06eeb14c (patch) | |
tree | 81a444df303136e00e32e5446af7ca26943806eb /lib | |
parent | update to libcbor rev 56a43b1e799; this includes a number of fixes (diff) | |
download | wireguard-openbsd-258e938fc1ef2ddf67f96dffc1c4617e06eeb14c.tar.xz wireguard-openbsd-258e938fc1ef2ddf67f96dffc1c4617e06eeb14c.zip |
Fix typo in comment in struct pcap_pkthdr
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpcap/pcap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpcap/pcap.h b/lib/libpcap/pcap.h index 59c3b1d37da..1a75590ae93 100644 --- a/lib/libpcap/pcap.h +++ b/lib/libpcap/pcap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcap.h,v 1.20 2018/06/03 10:29:28 sthen Exp $ */ +/* $OpenBSD: pcap.h,v 1.21 2019/11/28 03:08:21 akoshibe Exp $ */ /* * Copyright (c) 1993, 1994, 1995, 1996, 1997 @@ -92,7 +92,7 @@ typedef enum { struct pcap_pkthdr { struct bpf_timeval ts; /* time stamp */ bpf_u_int32 caplen; /* length of portion present */ - bpf_u_int32 len; /* length this packet (off wire) */ + bpf_u_int32 len; /* length of this packet (off wire) */ }; /* |