[SCTP]: ->source_h is not used anymore.
kill it
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 2751956..9bb5c03 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -714,7 +714,6 @@
/* What is the origin IP address for this chunk? */
union sctp_addr source;
- union sctp_addr source_h;
/* Destination address for this chunk. */
union sctp_addr dest;
diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
index beee1aa..9d55497 100644
--- a/net/sctp/sm_make_chunk.c
+++ b/net/sctp/sm_make_chunk.c
@@ -1032,7 +1032,6 @@
union sctp_addr *dest)
{
memcpy(&chunk->source, src, sizeof(union sctp_addr));
- flip_to_h(&chunk->source_h, &chunk->source);
memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
}