mirror of https://gitee.com/openkylin/linux.git
gre: minor cleanups
Use strcpy() rather the sprintf() for the case where name is getting generated. Fix indentation. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f2cd2d3e9b
commit
407d6fcbfd
|
@ -405,7 +405,7 @@ static struct ip_tunnel *ipgre_tunnel_locate(struct net *net,
|
|||
if (parms->name[0])
|
||||
strlcpy(name, parms->name, IFNAMSIZ);
|
||||
else
|
||||
sprintf(name, "gre%%d");
|
||||
strcpy(name, "gre%d");
|
||||
|
||||
dev = alloc_netdev(sizeof(*t), name, ipgre_tunnel_setup);
|
||||
if (!dev)
|
||||
|
|
Loading…
Reference in New Issue