amqp, write_graphite and write_kafka plugins: Implement the "[Graphite]PreserveSepara...
[collectd.git] / src / utils_dns.c
index e0b8452..3e80e86 100644 (file)
@@ -527,7 +527,7 @@ handle_ip(const struct ip *ip, int len)
            return (0);
     if (IPPROTO_UDP != ip->ip_p)
        return 0;
-    memcpy(buf, (void *) ip + offset, len - offset);
+    memcpy(buf, ((char *)ip) + offset, len - offset);
     if (0 == handle_udp((struct udphdr *) buf, len - offset))
        return 0;
     return 1;
@@ -756,10 +756,10 @@ const char *qtype_str(int t)
            case ns_t_a6:       return ("A6");
            case ns_t_dname:    return ("DNAME");
            case ns_t_sink:     return ("SINK");
-           case ns_t_apl:      return ("APL");
            case ns_t_tsig:     return ("TSIG");
 # endif
 # if __NAMESER >= 20090302
+           case ns_t_apl:      return ("APL");
            case ns_t_ds:       return ("DS");
            case ns_t_sshfp:    return ("SSHFP");
            case ns_t_ipseckey: return ("IPSECKEY");