aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/skbuff.c
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@linux-foundation.org>2007-04-20 16:40:01 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-25 22:29:17 -0700
commit0c6fcc8a8cfcc737d05b6be8b2c3e931ef99cfc2 (patch)
tree53da0c434b22dba352d34c01b50154a4ce23e564 /net/core/skbuff.c
parent[BRIDGE]: Fix warning in net-2.6.22 (diff)
downloadlinux-dev-0c6fcc8a8cfcc737d05b6be8b2c3e931ef99cfc2.tar.xz
linux-dev-0c6fcc8a8cfcc737d05b6be8b2c3e931ef99cfc2.zip
[NET] skbuff: skb_store_bits const is backwards
Getting warnings becuase skb_store_bits has skb as constant, but the function overwrites it. Looks like const was on the wrong side. Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r--net/core/skbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index c7a1b24b7374..6b50d58cce1e 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -1129,7 +1129,7 @@ fault:
* traversing fragment lists and such.
*/
-int skb_store_bits(const struct sk_buff *skb, int offset, void *from, int len)
+int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
{
int i, copy;
int start = skb_headlen(skb);