epl: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
[metze/wireshark/wip.git] / trigcap.c
index 9eef95c84e430db2630b532762db2dd92442f3f6..0d7cf9ea3467fb63624f16c27a55184876c01e7b 100644 (file)
--- a/trigcap.c
+++ b/trigcap.c
@@ -2,9 +2,7 @@
  * trigcap
  * a simple triggered libpcap-based capture agent
  *
- * $Id$
- *
- * (c) 2007, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2007, Luis E. Garcia Ontanon <luis@ontanon.org>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -18,7 +16,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  *
  */
 
@@ -29,7 +27,8 @@
 #include <signal.h>
 #include <errno.h>
 #include <getopt.h>
-#include <pcap.h>
+
+#include <wsutil/wspcap.h>
 
 static int dumping;
 static volatile int keep_going;
@@ -49,12 +48,12 @@ static void panic(int err, const char* fmt, ...) {
 static void dprintf(int lev, const char* fmt, ...) {
        va_list ap;
 
-       va_start(ap,fmt);
        if (lev <= debug_level) {
+               va_start(ap,fmt);
                vfprintf(stderr,fmt,ap);
+               va_end(ap);
                fflush(stderr);
        }
-       va_end(ap);
 }
 
 
@@ -68,7 +67,7 @@ static void usage(int err) {
        "   -p promiscuous mode\n"
        "   -s snapshot length\n"
        "   -q quiet\n"
-       "   -d increase deug level\n"
+       "   -d increase debug level\n"
        "   -h prints this message\n"
        ;
 
@@ -115,7 +114,7 @@ int main(int argc, char** argv) {
        char errbuf[PCAP_ERRBUF_SIZE];
        char* interface = NULL;
        char* outfile = NULL;
-       unsigned snaplen = 65536;
+       guint snaplen = 65536;
        char* start_filter_str = NULL;
        char* stop_filter_str = NULL;
        char* capture_filter_str = NULL;
@@ -172,7 +171,7 @@ int main(int argc, char** argv) {
 
        dprintf(1,"starting with:\n interface: %s\n snaplen: %d\n promisc: %d"
                        "\n outfile: %s\n capture filter: %s\n start: %s\n stop: %s\n debug level: %d\n",
-                       interface ? interface : "to be choosen",
+                       interface ? interface : "to be chosen",
                        snaplen,
                        promisc,
                        outfile ? outfile : "** missing **",
@@ -292,3 +291,16 @@ int main(int argc, char** argv) {
 
        return 0;
 }
+
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */