summaryrefslogtreecommitdiff
path: root/lib/libpcap
diff options
context:
space:
mode:
authorakoshibe <akoshibe@cvs.openbsd.org>2019-11-28 03:08:22 +0000
committerakoshibe <akoshibe@cvs.openbsd.org>2019-11-28 03:08:22 +0000
commitaee17827458028e4c815ce74ff8cd8336014420d (patch)
tree15803fe249a24b9eb2ffd0aaa56c5ca3e2ecd5d1 /lib/libpcap
parent31c7dc18a424390f4c29d5e182c73cccccb72f94 (diff)
Fix typo in comment in struct pcap_pkthdr
Diffstat (limited to 'lib/libpcap')
-rw-r--r--lib/libpcap/pcap.h4
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) */
};
/*