aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-29 10:44:43 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-29 10:44:43 +0000
commit3b5445e57a84d0643e6f253cee34d272acda557b (patch)
tree2f04afa1e194688fd8282502959b51336f466d73
parent87859a653d416075359509af21692f78d896ddfa (diff)
Fix a typo.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4620 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--packet-pflog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-pflog.h b/packet-pflog.h
index 3bb785191b..6d8f8b205c 100644
--- a/packet-pflog.h
+++ b/packet-pflog.h
@@ -1,6 +1,6 @@
/* packet-pflog.h
*
- * $Id: packet-pflog.h,v 1.1 2002/01/29 08:44:46 guy Exp $
+ * $Id: packet-pflog.h,v 1.2 2002/01/29 10:44:43 guy Exp $
*
* Copyright 2001 Mike Frantzen
* All rights reserved.
@@ -68,7 +68,7 @@ struct pfloghdr {
# define NTOHL(x) x = ntohl(x)
#endif
#ifndef NTOHS
-# define NTONS(x) x = ntohs(x)
+# define NTOHS(x) x = ntohs(x)
#endif
#ifndef HTONL
# define HTONL(x) x = htonl(x)