From c0501d5b011491032ca4c7e63d7b16f75668dcb1 Mon Sep 17 00:00:00 2001 From: mav Date: Tue, 17 Nov 2015 14:22:56 +0000 Subject: [PATCH] Off-by-one correctiont to r290980. --- sys/dev/isp/isp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index f4589039ce21..ff67ab7a2c21 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -4268,7 +4268,7 @@ isp_next_handle(ispsoftc_t *isp, uint16_t *ohp) handle = *ohp; if (ISP_CAP_2KLOGIN(isp)) { minh = 0; - maxh = NPH_RESERVED; + maxh = NPH_RESERVED - 1; } else { minh = SNS_ID + 1; maxh = NPH_MAX - 1;