X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fiscsi%2Fdiscovery.c;h=7b2ad2315264ef43ef4caa6efb11ca6e4d43d438;hp=3f297554a3c7e49648150a373b0b7bf3cfa555c9;hb=63e80faf9b42fbe73e25c804dd734b6179e42c24;hpb=a40b318e7a07a452ae7456053727bd11b2fa49b4 diff --git a/ccan/iscsi/discovery.c b/ccan/iscsi/discovery.c index 3f297554..7b2ad231 100644 --- a/ccan/iscsi/discovery.c +++ b/ccan/iscsi/discovery.c @@ -15,7 +15,7 @@ along with this program; if not, see . */ -#define _GNU_SOURCE +#include "config.h" #include #include #include @@ -26,7 +26,7 @@ int iscsi_discovery_async(struct iscsi_context *iscsi, iscsi_command_cb cb, void *private_data) { struct iscsi_pdu *pdu; - char *str; + const char *str; if (iscsi == NULL) { printf("trying to send text on NULL context\n"); @@ -155,7 +155,7 @@ int iscsi_process_text_reply(struct iscsi_context *iscsi, struct iscsi_pdu *pdu, return -1; } } else { - printf("Dont know how to handle discovery string : %s\n", hdr); + printf("Don't know how to handle discovery string : %s\n", hdr); pdu->callback(iscsi, ISCSI_STATUS_ERROR, NULL, pdu->private_data); iscsi_free_discovery_addresses(targets); return -1;