Add #ifdef INET6 around declaration of nbuf.

It was reported that without #ifdef INET6 around the declaration of "nbuf",
a build would report an unused variable. For some reason, I didn't see that
warning when I did a build, but it seems reasonable to add these #ifdef INET6's.

Submitted by:	dmitryluhtionov@gmail.com
MFC after:	1 week
This commit is contained in:
Rick Macklem 2019-04-28 22:37:59 +00:00
parent 6eb0062dd0
commit 32e5d7a42e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=346856

View file

@ -121,7 +121,9 @@ dump_openstate(void)
{
struct nfsd_dumplist dumplist;
int cnt, i;
#ifdef INET6
char nbuf[INET6_ADDRSTRLEN];
#endif
dumplist.ndl_size = DUMPSIZE;
dumplist.ndl_list = (void *)dp;
@ -176,7 +178,9 @@ dump_lockstate(char *fname)
{
struct nfsd_dumplocklist dumplocklist;
int cnt, i;
#ifdef INET6
char nbuf[INET6_ADDRSTRLEN];
#endif
dumplocklist.ndllck_size = DUMPSIZE;
dumplocklist.ndllck_list = (void *)lp;