ead: set_nonblock() is doing nothing (typo)
authorFelix Fietkau <nbd@openwrt.org>
Fri, 21 Mar 2014 15:54:56 +0000 (15:54 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 21 Mar 2014 15:54:56 +0000 (15:54 +0000)
spotted with cppcheck

Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr>
SVN-Revision: 39993

package/network/services/ead/src/ead-client.c

index 54d8b1343f63107bc661e6d62426f9f356962185..6d7e07dd4462e4ed926a6c1c5660adb643699079 100644 (file)
@@ -67,7 +67,7 @@ static uint16_t sid = 0;
 static void
 set_nonblock(int enable)
 {
-       if (enable == !!(sockflags & O_NONBLOCK));
+       if (enable == !!(sockflags & O_NONBLOCK))
                return;
 
        sockflags ^= O_NONBLOCK;