Style: Always use tab for indentation
authorDenis Kenzior <denkenz@gmail.com>
Tue, 16 Mar 2010 22:33:50 +0000 (17:33 -0500)
committerDenis Kenzior <denkenz@gmail.com>
Tue, 16 Mar 2010 22:33:50 +0000 (17:33 -0500)
gisi/pep.c

index 5495401..ba98173 100644 (file)
@@ -85,8 +85,10 @@ GIsiPEP *g_isi_pep_create(GIsiModem *modem, GIsiPEPCallback cb, void *opaque)
        fcntl(fd, F_SETFD, FD_CLOEXEC);
        fcntl(fd, F_SETFL, O_NONBLOCK|fcntl(fd, F_GETFL));
 
-       if (if_indextoname(ifi, buf) == NULL ||
-           setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, buf, IF_NAMESIZE))
+       if (if_indextoname(ifi, buf) == NULL)
+               goto error;
+
+       if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, buf, IF_NAMESIZE) != 0)
                goto error;
 
        pep->ready = cb;