]> git.ozlabs.org Git - ccan/blobdiff - ccan/iscsi/socket.c
iscsi, ttxml: fix warning [-Wunused-but-set-variable]
[ccan] / ccan / iscsi / socket.c
index ce3526e1e12945b997b86716f943d9e69f7bb38b..430be7211599c6ef65756c71d1b55c70e01585da 100644 (file)
@@ -15,6 +15,7 @@
    along with this program; if not, see <http://www.gnu.org/licenses/>.
 */
 
+#include "config.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <netinet/in.h>
 #include <poll.h>
 #include <sys/ioctl.h>
+#include <sys/types.h>
+#include <sys/socket.h>
 #include <arpa/inet.h>
 #include "iscsi.h"
 #include "iscsi-private.h"
 #include "dlinklist.h"
+#if HAVE_SYS_FILIO_H
+#include <sys/filio.h>
+#endif
 
 static void set_nonblocking(int fd)
 {
@@ -39,7 +45,6 @@ static void set_nonblocking(int fd)
 
 int iscsi_connect_async(struct iscsi_context *iscsi, const char *target, iscsi_command_cb cb, void *private_data)
 {
-       int tpgt = -1;
        int port = 3260;
        char *str;
        char *addr;
@@ -67,7 +72,6 @@ int iscsi_connect_async(struct iscsi_context *iscsi, const char *target, iscsi_c
        
        /* check if we have a target portal group tag */
        if ((str = rindex(addr, ',')) != NULL) {
-               tpgt = atoi(str+1);
                str[0] = 0;
        }