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
acf6f8b3
Commit
acf6f8b3
authored
Aug 31, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net/ipv4/netfilter/ip_nat_helper.c: Fix __FUNCTION__ pasting.
parent
f30565eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
net/ipv4/netfilter/ip_nat_helper.c
net/ipv4/netfilter/ip_nat_helper.c
+5
-4
No files found.
net/ipv4/netfilter/ip_nat_helper.c
View file @
acf6f8b3
...
...
@@ -382,9 +382,9 @@ int ip_nat_helper_register(struct ip_nat_helper *me)
const
char
*
tmp
=
me
->
me
->
name
;
if
(
strlen
(
tmp
)
+
6
>
MODULE_MAX_NAMELEN
)
{
printk
(
__FUNCTION__
"
: unable to "
printk
(
"%s
: unable to "
"compute conntrack helper name "
"from %s
\n
"
,
tmp
);
"from %s
\n
"
,
__FUNCTION__
,
tmp
);
return
-
EBUSY
;
}
tmp
+=
6
;
...
...
@@ -467,7 +467,8 @@ void ip_nat_helper_unregister(struct ip_nat_helper *me)
&&
ct_helper
->
me
)
{
__MOD_DEC_USE_COUNT
(
ct_helper
->
me
);
}
else
printk
(
__FUNCTION__
": unable to decrement usage count"
" of conntrack helper %s
\n
"
,
me
->
me
->
name
);
printk
(
"%s: unable to decrement usage count"
" of conntrack helper %s
\n
"
,
__FUNCTION__
,
me
->
me
->
name
);
}
}
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