Module Name: src
Committed By: agc
Date: Wed Feb 9 00:59:24 UTC 2011
Modified Files:
src/external/bsd/iscsi/dist/src/lib: initiator.c
Log Message:
Make sure we include <inttypes.h> if we have it. From Rumko.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/iscsi/dist/src/lib/initiator.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/iscsi/dist/src/lib/initiator.c
diff -u src/external/bsd/iscsi/dist/src/lib/initiator.c:1.2 src/external/bsd/iscsi/dist/src/lib/initiator.c:1.3
--- src/external/bsd/iscsi/dist/src/lib/initiator.c:1.2 Tue Jun 30 02:44:52 2009
+++ src/external/bsd/iscsi/dist/src/lib/initiator.c Wed Feb 9 00:59:23 2011
@@ -58,6 +58,10 @@
#include <netinet/tcp.h>
#endif
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+#endif
+
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif