Skip to content

Commit

Permalink
sctp: remove shadowed symbols
Browse files Browse the repository at this point in the history
Fixes the following sparse warnings:
net/sctp/sm_make_chunk.c:1457:9: warning: symbol 'len' shadows an earlier one
net/sctp/sm_make_chunk.c:1356:23: originally declared here
net/sctp/socket.c:1534:22: warning: symbol 'chunk' shadows an earlier one
net/sctp/socket.c:1387:20: originally declared here

Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
  • Loading branch information
sebastian@breakpoint.cc authored and Vlad Yasevich committed Aug 1, 2007
1 parent 0a5fcb9 commit c86dabc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion net/sctp/sm_make_chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,6 @@ struct sctp_association *sctp_unpack_cookie(
do_gettimeofday(&tv);

if (!asoc && tv_lt(bear_cookie->expiration, tv)) {
__u16 len;
/*
* Section 3.3.10.3 Stale Cookie Error (3)
*
Expand Down
1 change: 0 additions & 1 deletion net/sctp/socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,6 @@ SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
goto out_unlock;
}
if (sinfo_flags & SCTP_ABORT) {
struct sctp_chunk *chunk;

chunk = sctp_make_abort_user(asoc, msg, msg_len);
if (!chunk) {
Expand Down

0 comments on commit c86dabc

Please sign in to comment.