From: Guus Sliepen Date: Sat, 4 Nov 2017 13:42:28 +0000 (+0100) Subject: Fix compilation errors when --enable-uml is used. X-Git-Tag: release-1.0.33~2 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=63c4e8e5fd1d872d80ed9830ba8dfe2448622005 Fix compilation errors when --enable-uml is used. --- diff --git a/src/uml_device.c b/src/uml_device.c index 4a03bb7b..49f26ffe 100644 --- a/src/uml_device.c +++ b/src/uml_device.c @@ -235,7 +235,7 @@ static bool read_packet(vpn_packet_t *packet) { return false; } - if(connect(write_fd, &request.sock, sizeof(request.sock)) < 0) { + if(connect(write_fd, (struct sockaddr *)&request.sock, sizeof(request.sock)) < 0) { logger(LOG_ERR, "Could not bind write %s: %s", device_info, strerror(errno)); running = false; return false; @@ -269,7 +269,7 @@ static bool read_packet(vpn_packet_t *packet) { } default: - logger(LOG_ERR, "Invalid value for state variable in " FILE); + logger(LOG_ERR, "Invalid value for state variable in " __FILE__); abort(); } }