svn commit: r347172 - stable/11/usr.sbin/nfsdumpstate

Rick Macklem rmacklem at FreeBSD.org
Mon May 6 03:13:23 UTC 2019


Author: rmacklem
Date: Mon May  6 03:13:22 2019
New Revision: 347172
URL: https://svnweb.freebsd.org/changeset/base/347172

Log:
  MFC: r346856
  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.

Modified:
  stable/11/usr.sbin/nfsdumpstate/nfsdumpstate.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/nfsdumpstate/nfsdumpstate.c
==============================================================================
--- stable/11/usr.sbin/nfsdumpstate/nfsdumpstate.c	Mon May  6 03:06:22 2019	(r347171)
+++ stable/11/usr.sbin/nfsdumpstate/nfsdumpstate.c	Mon May  6 03:13:22 2019	(r347172)
@@ -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;


More information about the svn-src-all mailing list