Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cc177a8f
"storage/maria/ma_extra.c" did not exist on "4a115d65b06e1cb3dec2d9e9d828757b43f086d1"
Commit
cc177a8f
authored
Oct 11, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net/ipv6/netfilter/ip6table_mangle.c: Fix wrong cast.
parent
dcddf5b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
net/ipv6/netfilter/ip6table_mangle.c
net/ipv6/netfilter/ip6table_mangle.c
+1
-1
No files found.
net/ipv6/netfilter/ip6table_mangle.c
View file @
cc177a8f
...
@@ -157,7 +157,7 @@ ip6t_local_hook(unsigned int hook,
...
@@ -157,7 +157,7 @@ ip6t_local_hook(unsigned int hook,
hop_limit
=
(
*
pskb
)
->
nh
.
ipv6h
->
hop_limit
;
hop_limit
=
(
*
pskb
)
->
nh
.
ipv6h
->
hop_limit
;
/* flowlabel and prio (includes version, which shouldn't change either */
/* flowlabel and prio (includes version, which shouldn't change either */
flowlabel
=
(
u_int32_t
)
(
*
pskb
)
->
nh
.
ipv6h
;
flowlabel
=
*
((
u_int32_t
*
)
(
*
pskb
)
->
nh
.
ipv6h
)
;
ret
=
ip6t_do_table
(
pskb
,
hook
,
in
,
out
,
&
packet_mangler
,
NULL
);
ret
=
ip6t_do_table
(
pskb
,
hook
,
in
,
out
,
&
packet_mangler
,
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment