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

(-)kern_sysctl.c (+2 lines)
Lines 189-194 Link Here
189
	else
189
	else
190
		e1 = TAILQ_LAST(clist, sysctl_ctx_list);
190
		e1 = TAILQ_LAST(clist, sysctl_ctx_list);
191
	while (e1 != NULL) {
191
	while (e1 != NULL) {
192
		if (e1->entry->oid_number >= CTL_AUTO_START)
193
			e1->entry->oid_number = OID_AUTO;
192
		sysctl_register_oid(e1->entry);
194
		sysctl_register_oid(e1->entry);
193
		e1 = TAILQ_PREV(e1, sysctl_ctx_list, link);
195
		e1 = TAILQ_PREV(e1, sysctl_ctx_list, link);
194
	}
196
	}

Return to bug 30594