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

Commit c6b20d94 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

ppp: eliminate shadowed variable name



Sparse complains about shadowed declaration of skb. So use other
name.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 38454db3
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -1927,9 +1927,9 @@ ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
	/* If the queue is getting long, don't wait any longer for packets
	/* If the queue is getting long, don't wait any longer for packets
	   before the start of the queue. */
	   before the start of the queue. */
	if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
	if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
		struct sk_buff *skb = skb_peek(&ppp->mrq);
		struct sk_buff *mskb = skb_peek(&ppp->mrq);
		if (seq_before(ppp->minseq, skb->sequence))
		if (seq_before(ppp->minseq, mskb->sequence))
			ppp->minseq = skb->sequence;
			ppp->minseq = mskb->sequence;
	}
	}


	/* Pull completed packets off the queue and receive them. */
	/* Pull completed packets off the queue and receive them. */