View | Details | Raw Unified | Return to bug 219066
Collapse All | Expand All

(-)usr.sbin/rpcbind/rpcb_svc.c (-1 / +1 lines)
Lines 165-171 Link Here
165
		svcerr_decode(transp);
165
		svcerr_decode(transp);
166
		if (debugging)
166
		if (debugging)
167
			(void) fprintf(stderr, "rpcbind: could not decode\n");
167
			(void) fprintf(stderr, "rpcbind: could not decode\n");
168
		return;
168
		goto done;
169
	}
169
	}
170
	if (!check_access(transp, rqstp->rq_proc, &argument, RPCBVERS)) {
170
	if (!check_access(transp, rqstp->rq_proc, &argument, RPCBVERS)) {
171
		svcerr_weakauth(transp);
171
		svcerr_weakauth(transp);
(-)usr.sbin/rpcbind/rpcb_svc_4.c (-1 / +1 lines)
Lines 219-225 Link Here
219
		svcerr_decode(transp);
219
		svcerr_decode(transp);
220
		if (debugging)
220
		if (debugging)
221
			(void) fprintf(stderr, "rpcbind: could not decode\n");
221
			(void) fprintf(stderr, "rpcbind: could not decode\n");
222
		return;
222
		goto done;
223
	}
223
	}
224
	if (!check_access(transp, rqstp->rq_proc, &argument, RPCBVERS4)) {
224
	if (!check_access(transp, rqstp->rq_proc, &argument, RPCBVERS4)) {
225
		svcerr_weakauth(transp);
225
		svcerr_weakauth(transp);

Return to bug 219066