Merge branch 'collectd-4.9' into collectd-4.10
[collectd.git] / src / dns.c
index bf341a7..f3280c0 100644 (file)
--- a/src/dns.c
+++ b/src/dns.c
@@ -1,6 +1,7 @@
 /**
  * collectd - src/dns.c
  * Copyright (C) 2006,2007  Florian octo Forster
+ * Copyright (C) 2009       Mirko Buffoni
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License as published by the
@@ -17,6 +18,7 @@
  *
  * Authors:
  *   Florian octo Forster <octo at verplant.org>
+ *   Mirko Buffoni <briareos at eswat.org>
  **/
 
 #define _BSD_SOURCE
@@ -182,7 +184,7 @@ static void dns_child_callback (const rfc1035_header_t *dns)
                int skip = 0;
                if (!select_numeric_qtype)
                {
-                       char *str = qtype_str(dns->qtype);
+                       const char *str = qtype_str(dns->qtype);
                        if ((str == NULL) || (str[0] == '#'))
                                skip = 1;
                }
@@ -232,7 +234,7 @@ static void *dns_child_loop (void __attribute__((unused)) *dummy)
        }
 
        /* Passing `pcap_device == NULL' is okay and the same as passign "any" */
-       DEBUG ("Creating PCAP object..");
+       DEBUG ("dns plugin: Creating PCAP object..");
        pcap_obj = pcap_open_live ((pcap_device != NULL) ? pcap_device : "any",
                        PCAP_SNAPLEN,
                        0 /* Not promiscuous */,