Fix return type of vde_recv() as well.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 25 Mar 2012 14:17:50 +0000 (15:17 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 25 Mar 2012 14:17:50 +0000 (15:17 +0100)
In this case it is not really necessary as the conversion to int will already
take care of ensuring the return value is treated as signed.

src/vde_device.c

index 1f1d8cf..e69ae80 100644 (file)
@@ -99,7 +99,7 @@ static void close_device(void) {
 }
 
 static bool read_packet(vpn_packet_t *packet) {
-       int lenin = plug.vde_recv(conn, packet->data, MTU, 0);
+       int lenin = (ssize_t)plug.vde_recv(conn, packet->data, MTU, 0);
        if(lenin <= 0) {
                logger(LOG_ERR, "Error while reading from %s %s: %s", device_info, device, strerror(errno));
                running = false;