From 63c4e8e5fd1d872d80ed9830ba8dfe2448622005 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 4 Nov 2017 14:42:28 +0100 Subject: [PATCH 1/1] Fix compilation errors when --enable-uml is used. --- src/uml_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } } -- 2.20.1