From 31a35b79dd2a2577207c154e0459aff7b174f876 Mon Sep 17 00:00:00 2001 From: Remko Lodder Date: Fri, 27 Jul 2007 19:55:42 +0000 Subject: [PATCH] Update the sysctl_ctx_init(9) manual page with the following information from the submitter: Starting value for OID_AUTO was changed from 100 to 256 (0x100) in kern/kern_sysctl.c#rev1.112 on 2001-07-25, and defined as CTL_AUTO_START in sys/sysctl.h#rev1.98. Submitted by: cnst Silence from: #bsddocs on efnet MFC After: 3 days Approved by: re (bmah) --- share/man/man9/sysctl_ctx_init.9 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/man/man9/sysctl_ctx_init.9 b/share/man/man9/sysctl_ctx_init.9 index 498f508591a2..ba8c7f29e795 100644 --- a/share/man/man9/sysctl_ctx_init.9 +++ b/share/man/man9/sysctl_ctx_init.9 @@ -135,7 +135,8 @@ in most cases, the programmer specifies as the oid number when creating an oid. However, during registration of the oid in the tree, this number is changed to the first available number -greater than 99. +greater than or equal to +.Dv CTL_AUTO_START . If the first step of context deletion fails, re-registration of the oid does not change the already assigned oid number (which is different from OID_AUTO).