OSDN Git Service

modified comments
[opengatem/opengatem.git] / mdsrc / pcap.c
index 1d16c76..fb7e27b 100644 (file)
@@ -1,6 +1,6 @@
 /**************************************************
 OpengateM - a MAC address authentication system
- module for  capturing packets with libpcap
+ module for capturing packets with libpcap
 
 Copyright (C) 2011 Opengate Project Team
 Written by Yoshiaki Watanabe
@@ -41,7 +41,7 @@ int initPcap(void){
   int promiscuous=atoi(GetConfValue("Pcap/Promiscuous")); /* promiscuous mode */
   char* dev=GetConfValue("Pcap/Device");             /* pcap device */
 
-  /* set filter expression.  conf value might be [(not ether src %s) and ...] */
+  /* set filter expression. conf value might be [(not ether src %s) and ...] */
   GetMyMacAddress(myMacAddress);
   snprintf(filterExpr, FILTERMAXLN, GetConfValue("Pcap/Filter"), myMacAddress);