Re: [PATCH] net: ipconfgi: add declaration for ic_addrservaddr

2016-06-09 Thread David Miller
From: Daniel Borkmann Date: Thu, 09 Jun 2016 14:15:43 +0200 > On 06/09/2016 02:11 PM, Ben Dooks wrote: >> On 09/06/16 12:35, Daniel Borkmann wrote: >>> On 06/09/2016 01:07 PM, Ben Dooks wrote: The symbol ic_addrservaddr is not static, but has no declaration to match. Since the similar v

Re: [PATCH] net: ipconfgi: add declaration for ic_addrservaddr

2016-06-09 Thread Daniel Borkmann
On 06/09/2016 02:11 PM, Ben Dooks wrote: On 09/06/16 12:35, Daniel Borkmann wrote: On 06/09/2016 01:07 PM, Ben Dooks wrote: The symbol ic_addrservaddr is not static, but has no declaration to match. Since the similar variables are all exported, add this one to the header file as well. This fix

Re: [PATCH] net: ipconfgi: add declaration for ic_addrservaddr

2016-06-09 Thread Ben Dooks
On 09/06/16 12:35, Daniel Borkmann wrote: > On 06/09/2016 01:07 PM, Ben Dooks wrote: >> The symbol ic_addrservaddr is not static, but has no declaration >> to match. Since the similar variables are all exported, add this >> one to the header file as well. >> >> This fixes the following warning: >>

Re: [PATCH] net: ipconfgi: add declaration for ic_addrservaddr

2016-06-09 Thread Daniel Borkmann
On 06/09/2016 01:07 PM, Ben Dooks wrote: The symbol ic_addrservaddr is not static, but has no declaration to match. Since the similar variables are all exported, add this one to the header file as well. This fixes the following warning: net/ipv4/ipconfig.c:130:8: warning: symbol 'ic_addrservadd

[PATCH] net: ipconfgi: add declaration for ic_addrservaddr

2016-06-09 Thread Ben Dooks
The symbol ic_addrservaddr is not static, but has no declaration to match. Since the similar variables are all exported, add this one to the header file as well. This fixes the following warning: net/ipv4/ipconfig.c:130:8: warning: symbol 'ic_addrservaddr' was not declared. Should it be static?