git: b64a484592b2 - main - bootpc_decode_reply: eliminiate write only variable ip

From: Warner Losh <imp_at_FreeBSD.org>
Date: Tue, 05 Apr 2022 04:33:05 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=b64a484592b2c053f7131edd949edb0a76eef083

commit b64a484592b2c053f7131edd949edb0a76eef083
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-04-05 02:41:28 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-04-05 04:30:59 +0000

    bootpc_decode_reply: eliminiate write only variable ip
    
    Sponsored by:           Netflix
---
 sys/nfs/bootp_subr.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/sys/nfs/bootp_subr.c b/sys/nfs/bootp_subr.c
index eedda7baa377..62b864efa60b 100644
--- a/sys/nfs/bootp_subr.c
+++ b/sys/nfs/bootp_subr.c
@@ -1335,7 +1335,6 @@ bootpc_decode_reply(struct nfsv3_diskless *nd, struct bootpc_ifcontext *ifctx,
     struct bootpc_globalcontext *gctx)
 {
 	char *p, *s;
-	unsigned int ip;
 
 	ifctx->gotgw = 0;
 	ifctx->gotnetmask = 0;
@@ -1346,8 +1345,6 @@ bootpc_decode_reply(struct nfsv3_diskless *nd, struct bootpc_ifcontext *ifctx,
 
 	ifctx->myaddr.sin_addr = ifctx->reply.yiaddr;
 
-	ip = ntohl(ifctx->myaddr.sin_addr.s_addr);
-
 	printf("%s at ", ifctx->ireq.ifr_name);
 	print_sin_addr(&ifctx->myaddr);
 	printf(" server ");