diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-11-23 22:33:12 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-11-23 22:33:12 +0000 |
commit | 4b138a3c66fd14c4d73886b9450be37e21872296 (patch) | |
tree | 7889c010fa993ec656f8cfb3be3f31f05356f99c /usr.sbin/tcpdump | |
parent | 76264b8254f001c6f7320acf405abb71b5d7106c (diff) |
Replace a C++ comment with a C comment. No code changes.
Diffstat (limited to 'usr.sbin/tcpdump')
-rw-r--r-- | usr.sbin/tcpdump/print-pflog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tcpdump/print-pflog.c b/usr.sbin/tcpdump/print-pflog.c index 2f16d51c971..c6e2fae51ae 100644 --- a/usr.sbin/tcpdump/print-pflog.c +++ b/usr.sbin/tcpdump/print-pflog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print-pflog.c,v 1.16 2005/05/27 17:22:41 dhartmei Exp $ */ +/* $OpenBSD: print-pflog.c,v 1.17 2005/11/23 22:33:11 cloder Exp $ */ /* * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996 @@ -23,7 +23,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-pflog.c,v 1.16 2005/05/27 17:22:41 dhartmei Exp $ (LBL)"; + "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-pflog.c,v 1.17 2005/11/23 22:33:11 cloder Exp $ (LBL)"; #endif #include <sys/param.h> @@ -75,7 +75,7 @@ pflog_if_print(u_char *user, const struct pcap_pkthdr *h, ts_print(&h->ts); - // check length + /* check length */ if (caplen < sizeof(u_int8_t)) { printf("[|pflog]"); goto out; |