X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fiscsi%2Fsocket.c;h=430be7211599c6ef65756c71d1b55c70e01585da;hp=ce3526e1e12945b997b86716f943d9e69f7bb38b;hb=291237b4fed863be74051274ac5ad9920cb33cc3;hpb=a40b318e7a07a452ae7456053727bd11b2fa49b4;ds=sidebyside diff --git a/ccan/iscsi/socket.c b/ccan/iscsi/socket.c index ce3526e1..430be721 100644 --- a/ccan/iscsi/socket.c +++ b/ccan/iscsi/socket.c @@ -15,6 +15,7 @@ along with this program; if not, see . */ +#include "config.h" #include #include #include @@ -25,10 +26,15 @@ #include #include #include +#include +#include #include #include "iscsi.h" #include "iscsi-private.h" #include "dlinklist.h" +#if HAVE_SYS_FILIO_H +#include +#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; }