Fix incorrectly merged bits from 80cd2ff73071941a5356555b85a00ee90dfd0e16.
authorGuus Sliepen <guus@tinc-vpn.org>
Tue, 10 Dec 2013 16:00:16 +0000 (17:00 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Tue, 10 Dec 2013 16:00:16 +0000 (17:00 +0100)
src/solaris/device.c

index 09d90e2c5caebe42d87839d9ba1c2e26f039afa1..3ccc67f0de317416f8b475fd2e13e5ffcf1dc121 100644 (file)
@@ -316,7 +316,7 @@ static bool read_packet(vpn_packet_t *packet) {
                                        packet->data[13] = 0xDD;
                                        break;
                                default:
-                                       logger(DEBUG_TRAFFIC, LOG_ERR, "Unknown IP version %d while reading packet from %s %s", packet->data[14] >> 4, device_info, device);
+                                       ifdebug(TRAFFIC) logger(LOG_ERR, "Unknown IP version %d while reading packet from %s %s", packet->data[14] >> 4, device_info, device);
                                        return false;
                        }
 
@@ -339,13 +339,13 @@ static bool read_packet(vpn_packet_t *packet) {
 
        device_total_in += packet->len;
 
-       logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len, device_info);
+       ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s", packet->len, device_info);
 
        return true;
 }
 
 static bool write_packet(vpn_packet_t *packet) {
-       logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s", packet->len, device_info);
+       ifdebug(TRAFFIC) logger(LOG_DEBUG, "Writing packet of %d bytes to %s", packet->len, device_info);
 
        switch(device_type) {
                case DEVICE_TYPE_TUN: