X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=package%2Fnetwork%2Fservices%2Fppp%2Fpatches%2F340-populate_default_gateway.patch;fp=package%2Fnetwork%2Fservices%2Fppp%2Fpatches%2F340-populate_default_gateway.patch;h=c9a6e8796dfd31e9774215f40f69b99735fb686c;hp=7ddcb4604a7071a798ca9bfd35904375a3fb7166;hb=f8b58757d0e17560a1ccee29e94783f2d3cefb1e;hpb=46a129194de0f9e2f71b6526634569e1ec802504 diff --git a/package/network/services/ppp/patches/340-populate_default_gateway.patch b/package/network/services/ppp/patches/340-populate_default_gateway.patch index 7ddcb4604a..c9a6e8796d 100644 --- a/package/network/services/ppp/patches/340-populate_default_gateway.patch +++ b/package/network/services/ppp/patches/340-populate_default_gateway.patch @@ -13,7 +13,7 @@ Signed-off-by: Jo-Philipp Wich --- a/pppd/sys-linux.c +++ b/pppd/sys-linux.c -@@ -1703,6 +1703,9 @@ int sifdefaultroute (int unit, u_int32_t +@@ -1710,6 +1710,9 @@ int sifdefaultroute (int unit, u_int32_t memset (&rt, 0, sizeof (rt)); SET_SA_FAMILY (rt.rt_dst, AF_INET); @@ -23,7 +23,7 @@ Signed-off-by: Jo-Philipp Wich rt.rt_dev = ifname; rt.rt_metric = dfl_route_metric + 1; /* +1 for binary compatibility */ -@@ -1711,7 +1714,7 @@ int sifdefaultroute (int unit, u_int32_t +@@ -1718,7 +1721,7 @@ int sifdefaultroute (int unit, u_int32_t SIN_ADDR(rt.rt_genmask) = 0L; }