ipfilter: remove duplicate definition of 'thishost'

thishost is already defined in lib/initparse.c; no need for this one. This
fixes the ipfilter build with -fno-common.

-fno-common will become the default in GCC10/LLVM11.

MFC after:	3 days
This commit is contained in:
Kyle Evans 2020-03-29 02:26:58 +00:00
parent 4014b4a7a4
commit 0690ee732a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359413
2 changed files with 1 additions and 2 deletions

View file

@ -191,7 +191,7 @@ typedef int (* addfunc_t) __P((int, ioctlfunc_t, void *));
typedef int (* copyfunc_t) __P((void *, void *, size_t));
extern char thishost[];
extern char thishost[MAXHOSTNAMELEN];
extern char flagset[];
extern u_char flags[];
extern struct ipopt_names ionames[];

View file

@ -60,7 +60,6 @@ static const char rcsid[] = "@(#)$Id$";
#define bzero(a,b) memset(a,0,b)
#endif
int use_inet6 = 0;
char thishost[MAXHOSTNAMELEN];
extern char *optarg;