Fix compiling when support for UML sockets is enabled.
authorOliver Freyermuth <o.freyermuth@googlemail.com>
Wed, 4 Apr 2018 20:01:52 +0000 (22:01 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 4 Apr 2018 20:22:42 +0000 (22:22 +0200)
src/uml_device.c

index dbb13e937b3dbcdc79302ffa2d3e4ba55226f8c0..38ebd6fa2fbf1787061d43c68781a47d6442f8e6 100644 (file)
@@ -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;