Commit 6b9c8f46 authored by Shubhankar Kuranagatti's avatar Shubhankar Kuranagatti Committed by David S. Miller

net: ipv4: route.c: fix space before tab

The extra space before tab space has been removed.
Signed-off-by: default avatarShubhankar Kuranagatti <shubhankarvk@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f2050d91
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
* Alan Cox : Added BSD route gw semantics * Alan Cox : Added BSD route gw semantics
* Alan Cox : Super /proc >4K * Alan Cox : Super /proc >4K
* Alan Cox : MTU in route table * Alan Cox : MTU in route table
* Alan Cox : MSS actually. Also added the window * Alan Cox : MSS actually. Also added the window
* clamper. * clamper.
* Sam Lantinga : Fixed route matching in rt_del() * Sam Lantinga : Fixed route matching in rt_del()
* Alan Cox : Routing cache support. * Alan Cox : Routing cache support.
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
* Olaf Erb : irtt wasn't being copied right. * Olaf Erb : irtt wasn't being copied right.
* Bjorn Ekwall : Kerneld route support. * Bjorn Ekwall : Kerneld route support.
* Alan Cox : Multicast fixed (I hope) * Alan Cox : Multicast fixed (I hope)
* Pavel Krauz : Limited broadcast fixed * Pavel Krauz : Limited broadcast fixed
* Mike McLagan : Routing by source * Mike McLagan : Routing by source
* Alexey Kuznetsov : End of old history. Split to fib.c and * Alexey Kuznetsov : End of old history. Split to fib.c and
* route.c and rewritten from scratch. * route.c and rewritten from scratch.
...@@ -54,8 +54,8 @@ ...@@ -54,8 +54,8 @@
* Robert Olsson : Added rt_cache statistics * Robert Olsson : Added rt_cache statistics
* Arnaldo C. Melo : Convert proc stuff to seq_file * Arnaldo C. Melo : Convert proc stuff to seq_file
* Eric Dumazet : hashed spinlocks and rt_check_expire() fixes. * Eric Dumazet : hashed spinlocks and rt_check_expire() fixes.
* Ilia Sotnikov : Ignore TOS on PMTUD and Redirect * Ilia Sotnikov : Ignore TOS on PMTUD and Redirect
* Ilia Sotnikov : Removed TOS from hash calculations * Ilia Sotnikov : Removed TOS from hash calculations
*/ */
#define pr_fmt(fmt) "IPv4: " fmt #define pr_fmt(fmt) "IPv4: " fmt
...@@ -2246,7 +2246,7 @@ out: return err; ...@@ -2246,7 +2246,7 @@ out: return err;
if (res->type == RTN_UNREACHABLE) { if (res->type == RTN_UNREACHABLE) {
rth->dst.input= ip_error; rth->dst.input= ip_error;
rth->dst.error= -err; rth->dst.error= -err;
rth->rt_flags &= ~RTCF_LOCAL; rth->rt_flags &= ~RTCF_LOCAL;
} }
if (do_cache) { if (do_cache) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment