X-Git-Url: http://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fmulticast_device.c;h=4d5f10a1408852ea2e7bb2c9aa57e72c1d02ac17;hb=45a30f71572fab8e73c456737b7506b2cf12be25;hp=ba272eb20eb5a6bd68dd6b010944ecfd2136db07;hpb=ed1d0878afe53032a4b63e87afd4a435015cf5de;p=tinc diff --git a/src/multicast_device.c b/src/multicast_device.c index ba272eb2..4d5f10a1 100644 --- a/src/multicast_device.c +++ b/src/multicast_device.c @@ -129,7 +129,7 @@ static bool setup_device(void) { #endif default: - logger(DEBUG_ALWAYS, LOG_ERR, "Multicast for address family %hx unsupported", ai->ai_family); + logger(DEBUG_ALWAYS, LOG_ERR, "Multicast for address family %x unsupported", ai->ai_family); goto error; } @@ -164,7 +164,7 @@ static bool read_packet(vpn_packet_t *packet) { if((lenin = recv(device_fd, (void *)packet->data, MTU, 0)) <= 0) { logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info, - device, strerror(errno)); + device, sockstrerror(sockerrno)); return false; } @@ -187,7 +187,7 @@ static bool write_packet(vpn_packet_t *packet) { if(sendto(device_fd, (void *)packet->data, packet->len, 0, ai->ai_addr, ai->ai_addrlen) < 0) { logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device, - strerror(errno)); + sockstrerror(sockerrno)); return false; }