Date: Tue, 5 Apr 2022 04:33:05 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: b64a484592b2 - main - bootpc_decode_reply: eliminiate write only variable ip Message-ID: <202204050433.2354X5oa009895@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 ");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204050433.2354X5oa009895>