Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ef73bca authored by David S. Miller's avatar David S. Miller
Browse files

sctp: Fix debug message args.



I messed things up when I converted over to the transport
flow, I passed the ipv4 address value instead of it's address.

Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f5fca608
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -848,8 +848,8 @@ static inline int sctp_v4_xmit(struct sk_buff *skb,

	SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, src:%pI4, dst:%pI4\n",
			  __func__, skb, skb->len,
			  transport->fl.u.ip4.saddr,
			  transport->fl.u.ip4.daddr);
			  &transport->fl.u.ip4.saddr,
			  &transport->fl.u.ip4.daddr);

	inet->pmtudisc = transport->param_flags & SPP_PMTUD_ENABLE ?
			 IP_PMTUDISC_DO : IP_PMTUDISC_DONT;