From: Oliver Freyermuth Date: Wed, 4 Apr 2018 20:01:52 +0000 (+0200) Subject: Fix compiling when support for UML sockets is enabled. X-Git-Tag: release-1.1pre16~2 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=809ee79b458b0c45d4d60761b1d71171648bdbd5 Fix compiling when support for UML sockets is enabled. --- diff --git a/src/uml_device.c b/src/uml_device.c index dbb13e93..38ebd6fa 100644 --- a/src/uml_device.c +++ b/src/uml_device.c @@ -238,7 +238,7 @@ static bool read_packet(vpn_packet_t *packet) { return false; } - if(connect(write_fd, (struct sockkadr *)&request.sock, sizeof(request.sock)) < 0) { + if(connect(write_fd, (const struct sockaddr *)&request.sock, sizeof(request.sock)) < 0) { logger(DEBUG_ALWAYS, LOG_ERR, "Could not bind write %s: %s", device_info, strerror(errno)); event_exit(); return false;