aboutsummaryrefslogtreecommitdiffstats
path: root/caputils/iface_monitor.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2015-02-13 13:43:32 -0500
committerBill Meier <wmeier@newsguy.com>2015-02-13 18:45:23 +0000
commit6040bcd5f8b83c3ba4d1cd96730bb695a232e75d (patch)
treecbb0e767937b71a5ce11ee184a7ba000cfa31598 /caputils/iface_monitor.c
parent82f081dd64d6d193f23716a388b9c45f90431454 (diff)
caputils/*.c: As needed: Add editor modelines & Fix indentation
Change-Id: I081446fbbc242c01f8ac9dede575c3ea77421c42 Reviewed-on: https://code.wireshark.org/review/7103 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'caputils/iface_monitor.c')
-rw-r--r--caputils/iface_monitor.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/caputils/iface_monitor.c b/caputils/iface_monitor.c
index 683a9cc25e..c0bd51668a 100644
--- a/caputils/iface_monitor.c
+++ b/caputils/iface_monitor.c
@@ -239,7 +239,7 @@ iface_mon_get_sock(void)
/*
* Size of buffer for kernel network event.
*/
-#define NET_EVENT_DATA_SIZE (KEV_MSG_HEADER_SIZE + sizeof (struct net_event_data))
+#define NET_EVENT_DATA_SIZE (KEV_MSG_HEADER_SIZE + sizeof (struct net_event_data))
void
iface_mon_event(void)
@@ -341,7 +341,7 @@ iface_mon_event(void)
* interface" when it goes up; on Lion (and possibly Mountain
* Lion), an interface doesn't have to be up in order to
* have a BPF device attached to it.
- */
+ */
break;
}
}
@@ -373,3 +373,16 @@ iface_mon_event(void)
#endif /* HAVE_LIBNL */
#endif /* HAVE_LIBPCAP */
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */