projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
572a576
)
gre: fix goto statement typo
author
William Tu
<
[email protected]
>
Wed, 23 Aug 2017 00:04:05 +0000
(17:04 -0700)
committer
David S. Miller
<
[email protected]
>
Wed, 23 Aug 2017 04:28:37 +0000
(21:28 -0700)
Fix typo: pnet_tap_faied.
Signed-off-by: William Tu <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/ipv4/ip_gre.c
patch
|
blob
|
history
diff --git
a/net/ipv4/ip_gre.c
b/net/ipv4/ip_gre.c
index 6e8a62289e03c1973c96c84f866d1a00b4a82d1c..5a20ba9b9b50089a72801d73f14a29d873241065 100644
(file)
--- a/
net/ipv4/ip_gre.c
+++ b/
net/ipv4/ip_gre.c
@@
-1467,7
+1467,7
@@
static int __init ipgre_init(void)
err = register_pernet_device(&ipgre_tap_net_ops);
if (err < 0)
- goto pnet_tap_faied;
+ goto pnet_tap_fai
l
ed;
err = register_pernet_device(&erspan_net_ops);
if (err < 0)
@@
-1503,7
+1503,7
@@
add_proto_failed:
unregister_pernet_device(&erspan_net_ops);
pnet_erspan_failed:
unregister_pernet_device(&ipgre_tap_net_ops);
-pnet_tap_faied:
+pnet_tap_fai
l
ed:
unregister_pernet_device(&ipgre_net_ops);
return err;
}