]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
NTP_4_2_3P42 NTP_4_2_3P42
authorHarlan Stenn <stenn@ntp.org>
Sun, 10 Sep 2006 11:48:06 +0000 (07:48 -0400)
committerHarlan Stenn <stenn@ntp.org>
Sun, 10 Sep 2006 11:48:06 +0000 (07:48 -0400)
bk: 4503fb76lj0wSr4UphkXooO-egw8Tw

24 files changed:
ntpd/ntpd-opts.c
ntpd/ntpd-opts.h
ntpd/ntpd-opts.texi
ntpd/ntpd.1
ntpd/ntpdsim-opts.c
ntpd/ntpdsim-opts.h
ntpd/ntpdsim-opts.texi
ntpd/ntpdsim.1
ntpdc/ntpdc-opts.c
ntpdc/ntpdc-opts.h
ntpdc/ntpdc-opts.texi
ntpdc/ntpdc.1
ntpq/ntpq-opts.c
ntpq/ntpq-opts.h
ntpq/ntpq-opts.texi
ntpq/ntpq.1
packageinfo.sh
sntp/sntp-opts.c
sntp/sntp-opts.h
sntp/sntp-opts.texi
util/ntp-keygen-opts.c
util/ntp-keygen-opts.h
util/ntp-keygen-opts.texi
util/ntp-keygen.1

index e80c7dfa88985ff52c67a1830a55651871540e6b..f5129676faf75867e23f6d69b04a3febbe7e01cb 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpd-opts.c)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:04 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:45 AM EDT
  *  From the definitions    ntpd-opts.def
  *  and the template file   options
  */
@@ -864,7 +864,7 @@ static tOptDesc optDesc[ OPTION_CT ] = {
  */
 tSCC   zPROGNAME[]   = "NTPD";
 tSCC   zUsageTitle[] =
-"ntpd - NTP daemon program - Ver. 4.2.3p41\n\
+"ntpd - NTP daemon program - Ver. 4.2.3p42\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
 tSCC   zRcName[]     = ".ntprc";
 tSCC*  apzHomeList[] = {
index 88068f2ca204442a18c3a683b50e36336a9913a0..ceb6268cdc4e64e56a19d3fee87d28ca9c439930 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpd-opts.h)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:03 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:44 AM EDT
  *  From the definitions    ntpd-opts.def
  *  and the template file   options
  */
@@ -88,158 +88,150 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    34
-#define NTPD_VERSION       "4.2.3p41"
-#define NTPD_FULL_VERSION  "ntpd - NTP daemon program - Ver. 4.2.3p41"
+#define NTPD_VERSION       "4.2.3p42"
+#define NTPD_FULL_VERSION  "ntpd - NTP daemon program - Ver. 4.2.3p42"
+
+/*
+ *  Interface defines for all options.  Replace "n" with the UPPER_CASED
+ *  option name (as in the teOptIndex enumeration above).
+ *  e.g. HAVE_OPT( IPV4 )
+ */
+#define         DESC(n) ntpdOptions.pOptDesc[INDEX_OPT_ ## n]
+#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
+#define      OPT_ARG(n) (DESC(n).pzLastArg)
+#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
+#define    COUNT_OPT(n) (DESC(n).optOccCt)
+#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
+#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
+#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
+#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
+#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
+#define    CLEAR_OPT(n) STMTS( \
+                DESC(n).fOptState &= OPTST_PERSISTENT;   \
+                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
+                    DESC(n).fOptState |= OPTST_DISABLED; \
+                DESC(n).optCookie = NULL )
 
 /*
  *  Make sure there are no #define name conflicts with the option names
  */
-#ifndef NO_OPTION_NAME_WARNINGS
-# ifdef IPV4
-#  warn  undefining IPV4 due to option name conflict
-#  undef IPV4
+#ifndef     NO_OPTION_NAME_WARNINGS
+# ifdef    IPV4
+#  warning undefining IPV4 due to option name conflict
+#  undef   IPV4
 # endif
-
-# ifdef IPV6
-#  warn  undefining IPV6 due to option name conflict
-#  undef IPV6
+# ifdef    IPV6
+#  warning undefining IPV6 due to option name conflict
+#  undef   IPV6
 # endif
-
-# ifdef AUTHREQ
-#  warn  undefining AUTHREQ due to option name conflict
-#  undef AUTHREQ
+# ifdef    AUTHREQ
+#  warning undefining AUTHREQ due to option name conflict
+#  undef   AUTHREQ
 # endif
-
-# ifdef AUTHNOREQ
-#  warn  undefining AUTHNOREQ due to option name conflict
-#  undef AUTHNOREQ
+# ifdef    AUTHNOREQ
+#  warning undefining AUTHNOREQ due to option name conflict
+#  undef   AUTHNOREQ
 # endif
-
-# ifdef BCASTSYNC
-#  warn  undefining BCASTSYNC due to option name conflict
-#  undef BCASTSYNC
+# ifdef    BCASTSYNC
+#  warning undefining BCASTSYNC due to option name conflict
+#  undef   BCASTSYNC
 # endif
-
-# ifdef CONFIGFILE
-#  warn  undefining CONFIGFILE due to option name conflict
-#  undef CONFIGFILE
+# ifdef    CONFIGFILE
+#  warning undefining CONFIGFILE due to option name conflict
+#  undef   CONFIGFILE
 # endif
-
-# ifdef DEBUG_LEVEL
-#  warn  undefining DEBUG_LEVEL due to option name conflict
-#  undef DEBUG_LEVEL
+# ifdef    DEBUG_LEVEL
+#  warning undefining DEBUG_LEVEL due to option name conflict
+#  undef   DEBUG_LEVEL
 # endif
-
-# ifdef SET_DEBUG_LEVEL
-#  warn  undefining SET_DEBUG_LEVEL due to option name conflict
-#  undef SET_DEBUG_LEVEL
+# ifdef    SET_DEBUG_LEVEL
+#  warning undefining SET_DEBUG_LEVEL due to option name conflict
+#  undef   SET_DEBUG_LEVEL
 # endif
-
-# ifdef DRIFTFILE
-#  warn  undefining DRIFTFILE due to option name conflict
-#  undef DRIFTFILE
+# ifdef    DRIFTFILE
+#  warning undefining DRIFTFILE due to option name conflict
+#  undef   DRIFTFILE
 # endif
-
-# ifdef PANICGATE
-#  warn  undefining PANICGATE due to option name conflict
-#  undef PANICGATE
+# ifdef    PANICGATE
+#  warning undefining PANICGATE due to option name conflict
+#  undef   PANICGATE
 # endif
-
-# ifdef JAILDIR
-#  warn  undefining JAILDIR due to option name conflict
-#  undef JAILDIR
+# ifdef    JAILDIR
+#  warning undefining JAILDIR due to option name conflict
+#  undef   JAILDIR
 # endif
-
-# ifdef INTERFACE
-#  warn  undefining INTERFACE due to option name conflict
-#  undef INTERFACE
+# ifdef    INTERFACE
+#  warning undefining INTERFACE due to option name conflict
+#  undef   INTERFACE
 # endif
-
-# ifdef KEYFILE
-#  warn  undefining KEYFILE due to option name conflict
-#  undef KEYFILE
+# ifdef    KEYFILE
+#  warning undefining KEYFILE due to option name conflict
+#  undef   KEYFILE
 # endif
-
-# ifdef LOGFILE
-#  warn  undefining LOGFILE due to option name conflict
-#  undef LOGFILE
+# ifdef    LOGFILE
+#  warning undefining LOGFILE due to option name conflict
+#  undef   LOGFILE
 # endif
-
-# ifdef NOVIRTUALIPS
-#  warn  undefining NOVIRTUALIPS due to option name conflict
-#  undef NOVIRTUALIPS
+# ifdef    NOVIRTUALIPS
+#  warning undefining NOVIRTUALIPS due to option name conflict
+#  undef   NOVIRTUALIPS
 # endif
-
-# ifdef MODIFYMMTIMER
-#  warn  undefining MODIFYMMTIMER due to option name conflict
-#  undef MODIFYMMTIMER
+# ifdef    MODIFYMMTIMER
+#  warning undefining MODIFYMMTIMER due to option name conflict
+#  undef   MODIFYMMTIMER
 # endif
-
-# ifdef NOFORK
-#  warn  undefining NOFORK due to option name conflict
-#  undef NOFORK
+# ifdef    NOFORK
+#  warning undefining NOFORK due to option name conflict
+#  undef   NOFORK
 # endif
-
-# ifdef NICE
-#  warn  undefining NICE due to option name conflict
-#  undef NICE
+# ifdef    NICE
+#  warning undefining NICE due to option name conflict
+#  undef   NICE
 # endif
-
-# ifdef PIDFILE
-#  warn  undefining PIDFILE due to option name conflict
-#  undef PIDFILE
+# ifdef    PIDFILE
+#  warning undefining PIDFILE due to option name conflict
+#  undef   PIDFILE
 # endif
-
-# ifdef PRIORITY
-#  warn  undefining PRIORITY due to option name conflict
-#  undef PRIORITY
+# ifdef    PRIORITY
+#  warning undefining PRIORITY due to option name conflict
+#  undef   PRIORITY
 # endif
-
-# ifdef QUIT
-#  warn  undefining QUIT due to option name conflict
-#  undef QUIT
+# ifdef    QUIT
+#  warning undefining QUIT due to option name conflict
+#  undef   QUIT
 # endif
-
-# ifdef PROPAGATIONDELAY
-#  warn  undefining PROPAGATIONDELAY due to option name conflict
-#  undef PROPAGATIONDELAY
+# ifdef    PROPAGATIONDELAY
+#  warning undefining PROPAGATIONDELAY due to option name conflict
+#  undef   PROPAGATIONDELAY
 # endif
-
-# ifdef UPDATEINTERVAL
-#  warn  undefining UPDATEINTERVAL due to option name conflict
-#  undef UPDATEINTERVAL
+# ifdef    UPDATEINTERVAL
+#  warning undefining UPDATEINTERVAL due to option name conflict
+#  undef   UPDATEINTERVAL
 # endif
-
-# ifdef STATSDIR
-#  warn  undefining STATSDIR due to option name conflict
-#  undef STATSDIR
+# ifdef    STATSDIR
+#  warning undefining STATSDIR due to option name conflict
+#  undef   STATSDIR
 # endif
-
-# ifdef TRUSTEDKEY
-#  warn  undefining TRUSTEDKEY due to option name conflict
-#  undef TRUSTEDKEY
+# ifdef    TRUSTEDKEY
+#  warning undefining TRUSTEDKEY due to option name conflict
+#  undef   TRUSTEDKEY
 # endif
-
-# ifdef USER
-#  warn  undefining USER due to option name conflict
-#  undef USER
+# ifdef    USER
+#  warning undefining USER due to option name conflict
+#  undef   USER
 # endif
-
-# ifdef VAR
-#  warn  undefining VAR due to option name conflict
-#  undef VAR
+# ifdef    VAR
+#  warning undefining VAR due to option name conflict
+#  undef   VAR
 # endif
-
-# ifdef DVAR
-#  warn  undefining DVAR due to option name conflict
-#  undef DVAR
+# ifdef    DVAR
+#  warning undefining DVAR due to option name conflict
+#  undef   DVAR
 # endif
-
-# ifdef SLEW
-#  warn  undefining SLEW due to option name conflict
-#  undef SLEW
+# ifdef    SLEW
+#  warning undefining SLEW due to option name conflict
+#  undef   SLEW
 # endif
-
 #else  /* NO_OPTION_NAME_WARNINGS */
 # undef IPV4
 # undef IPV6
@@ -270,28 +262,7 @@ typedef enum {
 # undef VAR
 # undef DVAR
 # undef SLEW
-#endif /* NO_OPTION_NAME_WARNINGS */
-
-/*
- *  Interface defines for all options.  Replace "n" with
- *  the UPPER_CASED option name (as in the teOptIndex
- *  enumeration above).  e.g. HAVE_OPT( IPV4 )
- */
-#define        DESC(n) ntpdOptions.pOptDesc[INDEX_OPT_ ## n]
-#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
-#define      OPT_ARG(n) (DESC(n).pzLastArg)
-#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
-#define    COUNT_OPT(n) (DESC(n).optOccCt)
-#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
-#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
-#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
-#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
-#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
-#define    CLEAR_OPT(n) STMTS( \
-                DESC(n).fOptState &= OPTST_PERSISTENT;   \
-                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
-                    DESC(n).fOptState |= OPTST_DISABLED; \
-                DESC(n).optCookie = NULL )
+#endif  /*  NO_OPTION_NAME_WARNINGS */
 
 /*
  *  Interface defines for specific options.
@@ -355,7 +326,7 @@ typedef enum {
                 ntpdOptions.pzCurOpt  = NULL )
 #define START_OPT       RESTART_OPT(1)
 #define USAGE(c)        (*ntpdOptions.pUsageProc)( &ntpdOptions, c )
-/* extracted from opthead near line 316 */
+/* extracted from opthead near line 311 */
 
 /* * * * * *
  *
index c58f94828ec7844fde70aa644873004c210319a2..75d0bf4a44252a3257fced869e467c676dc3f3b2 100644 (file)
@@ -7,7 +7,7 @@
 # 
 # DO NOT EDIT THIS FILE   (ntpd-opts.texi)
 # 
-# It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:07 AM EDT
+# It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:46 AM EDT
 # From the definitions    ntpd-opts.def
 # and the template file   aginfo.tpl
 @end ignore
index 668e84aba4cbb6c5b7444de405546efe2d4da233..700747e28e02849b316bd263eda1f9c680c1ba14 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPD 1 2006-09-09 "( 4.2.3p41)" "Programmer's Manual"
+.TH NTPD 1 2006-09-10 "( 4.2.3p42)" "Programmer's Manual"
 .\"  DO NOT EDIT THIS FILE   (ntpd.1)
 .\"  
-.\"  It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:06 AM EDT
+.\"  It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:46 AM EDT
 .\"  From the definitions    ntpd-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 19fe05c6015776d69be9205bb747b7f94fe7d897..70c92266e5b97df08454ba46ddb20694ba63137f 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpdsim-opts.c)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:09 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:49 AM EDT
  *  From the definitions    ntpdsim-opts.def
  *  and the template file   options
  */
@@ -1062,7 +1062,7 @@ static tOptDesc optDesc[ OPTION_CT ] = {
  */
 tSCC   zPROGNAME[]   = "NTPDSIM";
 tSCC   zUsageTitle[] =
-"ntpdsim - NTP daemon simulation program - Ver. 4.2.3p41\n\
+"ntpdsim - NTP daemon simulation program - Ver. 4.2.3p42\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
 tSCC   zRcName[]     = ".ntprc";
 tSCC*  apzHomeList[] = {
index be2ff2faf485f04895240cc80805abd9d35f830d..ea4d82e07aac6697e2c8236b19cacc3f4fc09dda 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpdsim-opts.h)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:08 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:48 AM EDT
  *  From the definitions    ntpdsim-opts.def
  *  and the template file   options
  */
@@ -97,203 +97,186 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    43
-#define NTPDSIM_VERSION       "4.2.3p41"
-#define NTPDSIM_FULL_VERSION  "ntpdsim - NTP daemon simulation program - Ver. 4.2.3p41"
+#define NTPDSIM_VERSION       "4.2.3p42"
+#define NTPDSIM_FULL_VERSION  "ntpdsim - NTP daemon simulation program - Ver. 4.2.3p42"
+
+/*
+ *  Interface defines for all options.  Replace "n" with the UPPER_CASED
+ *  option name (as in the teOptIndex enumeration above).
+ *  e.g. HAVE_OPT( IPV4 )
+ */
+#define         DESC(n) ntpdsimOptions.pOptDesc[INDEX_OPT_ ## n]
+#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
+#define      OPT_ARG(n) (DESC(n).pzLastArg)
+#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
+#define    COUNT_OPT(n) (DESC(n).optOccCt)
+#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
+#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
+#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
+#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
+#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
+#define    CLEAR_OPT(n) STMTS( \
+                DESC(n).fOptState &= OPTST_PERSISTENT;   \
+                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
+                    DESC(n).fOptState |= OPTST_DISABLED; \
+                DESC(n).optCookie = NULL )
 
 /*
  *  Make sure there are no #define name conflicts with the option names
  */
-#ifndef NO_OPTION_NAME_WARNINGS
-# ifdef IPV4
-#  warn  undefining IPV4 due to option name conflict
-#  undef IPV4
+#ifndef     NO_OPTION_NAME_WARNINGS
+# ifdef    IPV4
+#  warning undefining IPV4 due to option name conflict
+#  undef   IPV4
 # endif
-
-# ifdef IPV6
-#  warn  undefining IPV6 due to option name conflict
-#  undef IPV6
+# ifdef    IPV6
+#  warning undefining IPV6 due to option name conflict
+#  undef   IPV6
 # endif
-
-# ifdef AUTHREQ
-#  warn  undefining AUTHREQ due to option name conflict
-#  undef AUTHREQ
+# ifdef    AUTHREQ
+#  warning undefining AUTHREQ due to option name conflict
+#  undef   AUTHREQ
 # endif
-
-# ifdef AUTHNOREQ
-#  warn  undefining AUTHNOREQ due to option name conflict
-#  undef AUTHNOREQ
+# ifdef    AUTHNOREQ
+#  warning undefining AUTHNOREQ due to option name conflict
+#  undef   AUTHNOREQ
 # endif
-
-# ifdef BCASTSYNC
-#  warn  undefining BCASTSYNC due to option name conflict
-#  undef BCASTSYNC
+# ifdef    BCASTSYNC
+#  warning undefining BCASTSYNC due to option name conflict
+#  undef   BCASTSYNC
 # endif
-
-# ifdef SIMBROADCASTDELAY
-#  warn  undefining SIMBROADCASTDELAY due to option name conflict
-#  undef SIMBROADCASTDELAY
+# ifdef    SIMBROADCASTDELAY
+#  warning undefining SIMBROADCASTDELAY due to option name conflict
+#  undef   SIMBROADCASTDELAY
 # endif
-
-# ifdef CONFIGFILE
-#  warn  undefining CONFIGFILE due to option name conflict
-#  undef CONFIGFILE
+# ifdef    CONFIGFILE
+#  warning undefining CONFIGFILE due to option name conflict
+#  undef   CONFIGFILE
 # endif
-
-# ifdef PHASENOISE
-#  warn  undefining PHASENOISE due to option name conflict
-#  undef PHASENOISE
+# ifdef    PHASENOISE
+#  warning undefining PHASENOISE due to option name conflict
+#  undef   PHASENOISE
 # endif
-
-# ifdef DEBUG_LEVEL
-#  warn  undefining DEBUG_LEVEL due to option name conflict
-#  undef DEBUG_LEVEL
+# ifdef    DEBUG_LEVEL
+#  warning undefining DEBUG_LEVEL due to option name conflict
+#  undef   DEBUG_LEVEL
 # endif
-
-# ifdef SET_DEBUG_LEVEL
-#  warn  undefining SET_DEBUG_LEVEL due to option name conflict
-#  undef SET_DEBUG_LEVEL
+# ifdef    SET_DEBUG_LEVEL
+#  warning undefining SET_DEBUG_LEVEL due to option name conflict
+#  undef   SET_DEBUG_LEVEL
 # endif
-
-# ifdef DRIFTFILE
-#  warn  undefining DRIFTFILE due to option name conflict
-#  undef DRIFTFILE
+# ifdef    DRIFTFILE
+#  warning undefining DRIFTFILE due to option name conflict
+#  undef   DRIFTFILE
 # endif
-
-# ifdef PANICGATE
-#  warn  undefining PANICGATE due to option name conflict
-#  undef PANICGATE
+# ifdef    PANICGATE
+#  warning undefining PANICGATE due to option name conflict
+#  undef   PANICGATE
 # endif
-
-# ifdef SIMSLEW
-#  warn  undefining SIMSLEW due to option name conflict
-#  undef SIMSLEW
+# ifdef    SIMSLEW
+#  warning undefining SIMSLEW due to option name conflict
+#  undef   SIMSLEW
 # endif
-
-# ifdef JAILDIR
-#  warn  undefining JAILDIR due to option name conflict
-#  undef JAILDIR
+# ifdef    JAILDIR
+#  warning undefining JAILDIR due to option name conflict
+#  undef   JAILDIR
 # endif
-
-# ifdef INTERFACE
-#  warn  undefining INTERFACE due to option name conflict
-#  undef INTERFACE
+# ifdef    INTERFACE
+#  warning undefining INTERFACE due to option name conflict
+#  undef   INTERFACE
 # endif
-
-# ifdef KEYFILE
-#  warn  undefining KEYFILE due to option name conflict
-#  undef KEYFILE
+# ifdef    KEYFILE
+#  warning undefining KEYFILE due to option name conflict
+#  undef   KEYFILE
 # endif
-
-# ifdef LOGFILE
-#  warn  undefining LOGFILE due to option name conflict
-#  undef LOGFILE
+# ifdef    LOGFILE
+#  warning undefining LOGFILE due to option name conflict
+#  undef   LOGFILE
 # endif
-
-# ifdef NOVIRTUALIPS
-#  warn  undefining NOVIRTUALIPS due to option name conflict
-#  undef NOVIRTUALIPS
+# ifdef    NOVIRTUALIPS
+#  warning undefining NOVIRTUALIPS due to option name conflict
+#  undef   NOVIRTUALIPS
 # endif
-
-# ifdef MODIFYMMTIMER
-#  warn  undefining MODIFYMMTIMER due to option name conflict
-#  undef MODIFYMMTIMER
+# ifdef    MODIFYMMTIMER
+#  warning undefining MODIFYMMTIMER due to option name conflict
+#  undef   MODIFYMMTIMER
 # endif
-
-# ifdef NOFORK
-#  warn  undefining NOFORK due to option name conflict
-#  undef NOFORK
+# ifdef    NOFORK
+#  warning undefining NOFORK due to option name conflict
+#  undef   NOFORK
 # endif
-
-# ifdef NICE
-#  warn  undefining NICE due to option name conflict
-#  undef NICE
+# ifdef    NICE
+#  warning undefining NICE due to option name conflict
+#  undef   NICE
 # endif
-
-# ifdef SERVERTIME
-#  warn  undefining SERVERTIME due to option name conflict
-#  undef SERVERTIME
+# ifdef    SERVERTIME
+#  warning undefining SERVERTIME due to option name conflict
+#  undef   SERVERTIME
 # endif
-
-# ifdef PIDFILE
-#  warn  undefining PIDFILE due to option name conflict
-#  undef PIDFILE
+# ifdef    PIDFILE
+#  warning undefining PIDFILE due to option name conflict
+#  undef   PIDFILE
 # endif
-
-# ifdef PRIORITY
-#  warn  undefining PRIORITY due to option name conflict
-#  undef PRIORITY
+# ifdef    PRIORITY
+#  warning undefining PRIORITY due to option name conflict
+#  undef   PRIORITY
 # endif
-
-# ifdef QUIT
-#  warn  undefining QUIT due to option name conflict
-#  undef QUIT
+# ifdef    QUIT
+#  warning undefining QUIT due to option name conflict
+#  undef   QUIT
 # endif
-
-# ifdef PROPAGATIONDELAY
-#  warn  undefining PROPAGATIONDELAY due to option name conflict
-#  undef PROPAGATIONDELAY
+# ifdef    PROPAGATIONDELAY
+#  warning undefining PROPAGATIONDELAY due to option name conflict
+#  undef   PROPAGATIONDELAY
 # endif
-
-# ifdef UPDATEINTERVAL
-#  warn  undefining UPDATEINTERVAL due to option name conflict
-#  undef UPDATEINTERVAL
+# ifdef    UPDATEINTERVAL
+#  warning undefining UPDATEINTERVAL due to option name conflict
+#  undef   UPDATEINTERVAL
 # endif
-
-# ifdef STATSDIR
-#  warn  undefining STATSDIR due to option name conflict
-#  undef STATSDIR
+# ifdef    STATSDIR
+#  warning undefining STATSDIR due to option name conflict
+#  undef   STATSDIR
 # endif
-
-# ifdef ENDSIMTIME
-#  warn  undefining ENDSIMTIME due to option name conflict
-#  undef ENDSIMTIME
+# ifdef    ENDSIMTIME
+#  warning undefining ENDSIMTIME due to option name conflict
+#  undef   ENDSIMTIME
 # endif
-
-# ifdef TRUSTEDKEY
-#  warn  undefining TRUSTEDKEY due to option name conflict
-#  undef TRUSTEDKEY
+# ifdef    TRUSTEDKEY
+#  warning undefining TRUSTEDKEY due to option name conflict
+#  undef   TRUSTEDKEY
 # endif
-
-# ifdef FREQERR
-#  warn  undefining FREQERR due to option name conflict
-#  undef FREQERR
+# ifdef    FREQERR
+#  warning undefining FREQERR due to option name conflict
+#  undef   FREQERR
 # endif
-
-# ifdef WALKNOISE
-#  warn  undefining WALKNOISE due to option name conflict
-#  undef WALKNOISE
+# ifdef    WALKNOISE
+#  warning undefining WALKNOISE due to option name conflict
+#  undef   WALKNOISE
 # endif
-
-# ifdef USER
-#  warn  undefining USER due to option name conflict
-#  undef USER
+# ifdef    USER
+#  warning undefining USER due to option name conflict
+#  undef   USER
 # endif
-
-# ifdef VAR
-#  warn  undefining VAR due to option name conflict
-#  undef VAR
+# ifdef    VAR
+#  warning undefining VAR due to option name conflict
+#  undef   VAR
 # endif
-
-# ifdef DVAR
-#  warn  undefining DVAR due to option name conflict
-#  undef DVAR
+# ifdef    DVAR
+#  warning undefining DVAR due to option name conflict
+#  undef   DVAR
 # endif
-
-# ifdef SLEW
-#  warn  undefining SLEW due to option name conflict
-#  undef SLEW
+# ifdef    SLEW
+#  warning undefining SLEW due to option name conflict
+#  undef   SLEW
 # endif
-
-# ifdef NDELAY
-#  warn  undefining NDELAY due to option name conflict
-#  undef NDELAY
+# ifdef    NDELAY
+#  warning undefining NDELAY due to option name conflict
+#  undef   NDELAY
 # endif
-
-# ifdef PDELAY
-#  warn  undefining PDELAY due to option name conflict
-#  undef PDELAY
+# ifdef    PDELAY
+#  warning undefining PDELAY due to option name conflict
+#  undef   PDELAY
 # endif
-
 #else  /* NO_OPTION_NAME_WARNINGS */
 # undef IPV4
 # undef IPV6
@@ -333,28 +316,7 @@ typedef enum {
 # undef SLEW
 # undef NDELAY
 # undef PDELAY
-#endif /* NO_OPTION_NAME_WARNINGS */
-
-/*
- *  Interface defines for all options.  Replace "n" with
- *  the UPPER_CASED option name (as in the teOptIndex
- *  enumeration above).  e.g. HAVE_OPT( IPV4 )
- */
-#define        DESC(n) ntpdsimOptions.pOptDesc[INDEX_OPT_ ## n]
-#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
-#define      OPT_ARG(n) (DESC(n).pzLastArg)
-#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
-#define    COUNT_OPT(n) (DESC(n).optOccCt)
-#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
-#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
-#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
-#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
-#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
-#define    CLEAR_OPT(n) STMTS( \
-                DESC(n).fOptState &= OPTST_PERSISTENT;   \
-                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
-                    DESC(n).fOptState |= OPTST_DISABLED; \
-                DESC(n).optCookie = NULL )
+#endif  /*  NO_OPTION_NAME_WARNINGS */
 
 /*
  *  Interface defines for specific options.
@@ -427,7 +389,7 @@ typedef enum {
                 ntpdsimOptions.pzCurOpt  = NULL )
 #define START_OPT       RESTART_OPT(1)
 #define USAGE(c)        (*ntpdsimOptions.pUsageProc)( &ntpdsimOptions, c )
-/* extracted from opthead near line 316 */
+/* extracted from opthead near line 311 */
 
 /* * * * * *
  *
index c70ada80fc9bfb447e600fd29800c8a69a7fa8fe..dabdf3c8b0ec614a5050fd3b302f8dfc0a99c139 100644 (file)
@@ -7,7 +7,7 @@
 # 
 # DO NOT EDIT THIS FILE   (ntpdsim-opts.texi)
 # 
-# It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:12 AM EDT
+# It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:52 AM EDT
 # From the definitions    ntpdsim-opts.def
 # and the template file   aginfo.tpl
 @end ignore
index 8a80bc74a7a73d9515d066d7096ea31e18c795e7..2f5236ddc8a7ab64ef24a1cadc32cf84d843fae7 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPDSIM 1 2006-09-09 "( 4.2.3p41)" "Programmer's Manual"
+.TH NTPDSIM 1 2006-09-10 "( 4.2.3p42)" "Programmer's Manual"
 .\"  DO NOT EDIT THIS FILE   (ntpdsim.1)
 .\"  
-.\"  It has been AutoGen-ed  Saturday September  9, 2006 at 05:11:10 AM EDT
+.\"  It has been AutoGen-ed  Sunday September 10, 2006 at 07:38:50 AM EDT
 .\"  From the definitions    ntpdsim-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index e7cff9ce4119eebcc402bbbf9ae9aa2ad60df1ee..3e2b5c8dc98d4e03c7bbc4595f75a828adfff009 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpdc-opts.c)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:22 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:24 AM EDT
  *  From the definitions    ntpdc-opts.def
  *  and the template file   options
  */
@@ -451,7 +451,7 @@ static tOptDesc optDesc[ OPTION_CT ] = {
  */
 tSCC   zPROGNAME[]   = "NTPDC";
 tSCC   zUsageTitle[] =
-"ntpdc - vendor-specific NTP query program - Ver. 4.2.3p41\n\
+"ntpdc - vendor-specific NTP query program - Ver. 4.2.3p42\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
 tSCC   zRcName[]     = ".ntprc";
 tSCC*  apzHomeList[] = {
index bcf06395710d4a911b6f538765eb614946597ec1..b4d67141a6aafd12a368be0a0d26a5461b82f4cb 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpdc-opts.h)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:21 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:23 AM EDT
  *  From the definitions    ntpdc-opts.def
  *  and the template file   options
  */
@@ -69,63 +69,74 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    15
-#define NTPDC_VERSION       "4.2.3p41"
-#define NTPDC_FULL_VERSION  "ntpdc - vendor-specific NTP query program - Ver. 4.2.3p41"
+#define NTPDC_VERSION       "4.2.3p42"
+#define NTPDC_FULL_VERSION  "ntpdc - vendor-specific NTP query program - Ver. 4.2.3p42"
+
+/*
+ *  Interface defines for all options.  Replace "n" with the UPPER_CASED
+ *  option name (as in the teOptIndex enumeration above).
+ *  e.g. HAVE_OPT( IPV4 )
+ */
+#define         DESC(n) ntpdcOptions.pOptDesc[INDEX_OPT_ ## n]
+#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
+#define      OPT_ARG(n) (DESC(n).pzLastArg)
+#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
+#define    COUNT_OPT(n) (DESC(n).optOccCt)
+#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
+#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
+#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
+#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
+#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
+#define    CLEAR_OPT(n) STMTS( \
+                DESC(n).fOptState &= OPTST_PERSISTENT;   \
+                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
+                    DESC(n).fOptState |= OPTST_DISABLED; \
+                DESC(n).optCookie = NULL )
 
 /*
  *  Make sure there are no #define name conflicts with the option names
  */
-#ifndef NO_OPTION_NAME_WARNINGS
-# ifdef IPV4
-#  warn  undefining IPV4 due to option name conflict
-#  undef IPV4
+#ifndef     NO_OPTION_NAME_WARNINGS
+# ifdef    IPV4
+#  warning undefining IPV4 due to option name conflict
+#  undef   IPV4
 # endif
-
-# ifdef IPV6
-#  warn  undefining IPV6 due to option name conflict
-#  undef IPV6
+# ifdef    IPV6
+#  warning undefining IPV6 due to option name conflict
+#  undef   IPV6
 # endif
-
-# ifdef COMMAND
-#  warn  undefining COMMAND due to option name conflict
-#  undef COMMAND
+# ifdef    COMMAND
+#  warning undefining COMMAND due to option name conflict
+#  undef   COMMAND
 # endif
-
-# ifdef LISTPEERS
-#  warn  undefining LISTPEERS due to option name conflict
-#  undef LISTPEERS
+# ifdef    LISTPEERS
+#  warning undefining LISTPEERS due to option name conflict
+#  undef   LISTPEERS
 # endif
-
-# ifdef PEERS
-#  warn  undefining PEERS due to option name conflict
-#  undef PEERS
+# ifdef    PEERS
+#  warning undefining PEERS due to option name conflict
+#  undef   PEERS
 # endif
-
-# ifdef SHOWPEERS
-#  warn  undefining SHOWPEERS due to option name conflict
-#  undef SHOWPEERS
+# ifdef    SHOWPEERS
+#  warning undefining SHOWPEERS due to option name conflict
+#  undef   SHOWPEERS
 # endif
-
-# ifdef INTERACTIVE
-#  warn  undefining INTERACTIVE due to option name conflict
-#  undef INTERACTIVE
+# ifdef    INTERACTIVE
+#  warning undefining INTERACTIVE due to option name conflict
+#  undef   INTERACTIVE
 # endif
-
-# ifdef DEBUG_LEVEL
-#  warn  undefining DEBUG_LEVEL due to option name conflict
-#  undef DEBUG_LEVEL
+# ifdef    DEBUG_LEVEL
+#  warning undefining DEBUG_LEVEL due to option name conflict
+#  undef   DEBUG_LEVEL
 # endif
-
-# ifdef SET_DEBUG_LEVEL
-#  warn  undefining SET_DEBUG_LEVEL due to option name conflict
-#  undef SET_DEBUG_LEVEL
+# ifdef    SET_DEBUG_LEVEL
+#  warning undefining SET_DEBUG_LEVEL due to option name conflict
+#  undef   SET_DEBUG_LEVEL
 # endif
-
-# ifdef NUMERIC
-#  warn  undefining NUMERIC due to option name conflict
-#  undef NUMERIC
+# ifdef    NUMERIC
+#  warning undefining NUMERIC due to option name conflict
+#  undef   NUMERIC
 # endif
-
 #else  /* NO_OPTION_NAME_WARNINGS */
 # undef IPV4
 # undef IPV6
@@ -137,28 +148,7 @@ typedef enum {
 # undef DEBUG_LEVEL
 # undef SET_DEBUG_LEVEL
 # undef NUMERIC
-#endif /* NO_OPTION_NAME_WARNINGS */
-
-/*
- *  Interface defines for all options.  Replace "n" with
- *  the UPPER_CASED option name (as in the teOptIndex
- *  enumeration above).  e.g. HAVE_OPT( IPV4 )
- */
-#define        DESC(n) ntpdcOptions.pOptDesc[INDEX_OPT_ ## n]
-#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
-#define      OPT_ARG(n) (DESC(n).pzLastArg)
-#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
-#define    COUNT_OPT(n) (DESC(n).optOccCt)
-#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
-#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
-#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
-#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
-#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
-#define    CLEAR_OPT(n) STMTS( \
-                DESC(n).fOptState &= OPTST_PERSISTENT;   \
-                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
-                    DESC(n).fOptState |= OPTST_DISABLED; \
-                DESC(n).optCookie = NULL )
+#endif  /*  NO_OPTION_NAME_WARNINGS */
 
 /*
  *  Interface defines for specific options.
@@ -199,7 +189,7 @@ typedef enum {
                 ntpdcOptions.pzCurOpt  = NULL )
 #define START_OPT       RESTART_OPT(1)
 #define USAGE(c)        (*ntpdcOptions.pUsageProc)( &ntpdcOptions, c )
-/* extracted from opthead near line 316 */
+/* extracted from opthead near line 311 */
 
 /* * * * * *
  *
index 5193c8699751e9f52143feffa7e16f5049ff10b0..b897cee24da69fa2e07044f6e784173504d8f32b 100644 (file)
@@ -7,7 +7,7 @@
 # 
 # DO NOT EDIT THIS FILE   (ntpdc-opts.texi)
 # 
-# It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:24 AM EDT
+# It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:26 AM EDT
 # From the definitions    ntpdc-opts.def
 # and the template file   aginfo.tpl
 @end ignore
index 4140b9284f5edca291c35c263417974c3a44ad6d..5d6fbb9ea5d2bdc75b1b876a3e56b35dbc81f07d 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPDC 1 2006-09-09 "( 4.2.3p41)" "Programmer's Manual"
+.TH NTPDC 1 2006-09-10 "( 4.2.3p42)" "Programmer's Manual"
 .\"  DO NOT EDIT THIS FILE   (ntpdc.1)
 .\"  
-.\"  It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:23 AM EDT
+.\"  It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:25 AM EDT
 .\"  From the definitions    ntpdc-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 13c70877ba79fee054b06fc2cf4cbef6e15fa8df..1c4f08619db4b591851d5560321223e7ff4ff7cb 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpq-opts.c)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:52 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:52 AM EDT
  *  From the definitions    ntpq-opts.def
  *  and the template file   options
  */
@@ -399,7 +399,7 @@ static tOptDesc optDesc[ OPTION_CT ] = {
  */
 tSCC   zPROGNAME[]   = "NTPQ";
 tSCC   zUsageTitle[] =
-"ntpq - standard NTP query program - Ver. 4.2.3p41\n\
+"ntpq - standard NTP query program - Ver. 4.2.3p42\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
 tSCC   zRcName[]     = ".ntprc";
 tSCC*  apzHomeList[] = {
index 3aebcf6eaab2c8483ee1ffad717a7ecc61a38110..6b5e44b68050d8ff5b6e44f43bbbafba4e714257 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntpq-opts.h)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:52 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:52 AM EDT
  *  From the definitions    ntpq-opts.def
  *  and the template file   options
  */
@@ -67,53 +67,66 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    13
-#define NTPQ_VERSION       "4.2.3p41"
-#define NTPQ_FULL_VERSION  "ntpq - standard NTP query program - Ver. 4.2.3p41"
+#define NTPQ_VERSION       "4.2.3p42"
+#define NTPQ_FULL_VERSION  "ntpq - standard NTP query program - Ver. 4.2.3p42"
+
+/*
+ *  Interface defines for all options.  Replace "n" with the UPPER_CASED
+ *  option name (as in the teOptIndex enumeration above).
+ *  e.g. HAVE_OPT( IPV4 )
+ */
+#define         DESC(n) ntpqOptions.pOptDesc[INDEX_OPT_ ## n]
+#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
+#define      OPT_ARG(n) (DESC(n).pzLastArg)
+#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
+#define    COUNT_OPT(n) (DESC(n).optOccCt)
+#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
+#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
+#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
+#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
+#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
+#define    CLEAR_OPT(n) STMTS( \
+                DESC(n).fOptState &= OPTST_PERSISTENT;   \
+                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
+                    DESC(n).fOptState |= OPTST_DISABLED; \
+                DESC(n).optCookie = NULL )
 
 /*
  *  Make sure there are no #define name conflicts with the option names
  */
-#ifndef NO_OPTION_NAME_WARNINGS
-# ifdef IPV4
-#  warn  undefining IPV4 due to option name conflict
-#  undef IPV4
+#ifndef     NO_OPTION_NAME_WARNINGS
+# ifdef    IPV4
+#  warning undefining IPV4 due to option name conflict
+#  undef   IPV4
 # endif
-
-# ifdef IPV6
-#  warn  undefining IPV6 due to option name conflict
-#  undef IPV6
+# ifdef    IPV6
+#  warning undefining IPV6 due to option name conflict
+#  undef   IPV6
 # endif
-
-# ifdef COMMAND
-#  warn  undefining COMMAND due to option name conflict
-#  undef COMMAND
+# ifdef    COMMAND
+#  warning undefining COMMAND due to option name conflict
+#  undef   COMMAND
 # endif
-
-# ifdef DEBUG_LEVEL
-#  warn  undefining DEBUG_LEVEL due to option name conflict
-#  undef DEBUG_LEVEL
+# ifdef    DEBUG_LEVEL
+#  warning undefining DEBUG_LEVEL due to option name conflict
+#  undef   DEBUG_LEVEL
 # endif
-
-# ifdef SET_DEBUG_LEVEL
-#  warn  undefining SET_DEBUG_LEVEL due to option name conflict
-#  undef SET_DEBUG_LEVEL
+# ifdef    SET_DEBUG_LEVEL
+#  warning undefining SET_DEBUG_LEVEL due to option name conflict
+#  undef   SET_DEBUG_LEVEL
 # endif
-
-# ifdef PEERS
-#  warn  undefining PEERS due to option name conflict
-#  undef PEERS
+# ifdef    PEERS
+#  warning undefining PEERS due to option name conflict
+#  undef   PEERS
 # endif
-
-# ifdef INTERACTIVE
-#  warn  undefining INTERACTIVE due to option name conflict
-#  undef INTERACTIVE
+# ifdef    INTERACTIVE
+#  warning undefining INTERACTIVE due to option name conflict
+#  undef   INTERACTIVE
 # endif
-
-# ifdef NUMERIC
-#  warn  undefining NUMERIC due to option name conflict
-#  undef NUMERIC
+# ifdef    NUMERIC
+#  warning undefining NUMERIC due to option name conflict
+#  undef   NUMERIC
 # endif
-
 #else  /* NO_OPTION_NAME_WARNINGS */
 # undef IPV4
 # undef IPV6
@@ -123,28 +136,7 @@ typedef enum {
 # undef PEERS
 # undef INTERACTIVE
 # undef NUMERIC
-#endif /* NO_OPTION_NAME_WARNINGS */
-
-/*
- *  Interface defines for all options.  Replace "n" with
- *  the UPPER_CASED option name (as in the teOptIndex
- *  enumeration above).  e.g. HAVE_OPT( IPV4 )
- */
-#define        DESC(n) ntpqOptions.pOptDesc[INDEX_OPT_ ## n]
-#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
-#define      OPT_ARG(n) (DESC(n).pzLastArg)
-#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
-#define    COUNT_OPT(n) (DESC(n).optOccCt)
-#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
-#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
-#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
-#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
-#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
-#define    CLEAR_OPT(n) STMTS( \
-                DESC(n).fOptState &= OPTST_PERSISTENT;   \
-                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
-                    DESC(n).fOptState |= OPTST_DISABLED; \
-                DESC(n).optCookie = NULL )
+#endif  /*  NO_OPTION_NAME_WARNINGS */
 
 /*
  *  Interface defines for specific options.
@@ -183,7 +175,7 @@ typedef enum {
                 ntpqOptions.pzCurOpt  = NULL )
 #define START_OPT       RESTART_OPT(1)
 #define USAGE(c)        (*ntpqOptions.pUsageProc)( &ntpqOptions, c )
-/* extracted from opthead near line 316 */
+/* extracted from opthead near line 311 */
 
 /* * * * * *
  *
index d978f953e72f197da20c12916165d5041dcea05a..081692237b15e16bbcfa90b2a052ea661565e3f6 100644 (file)
@@ -7,7 +7,7 @@
 # 
 # DO NOT EDIT THIS FILE   (ntpq-opts.texi)
 # 
-# It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:54 AM EDT
+# It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:54 AM EDT
 # From the definitions    ntpq-opts.def
 # and the template file   aginfo.tpl
 @end ignore
index bd8b3a2b40248534382ea4d97d07179729c2969d..c34b182fd6f3ee63f833ed6c54b9f71103eb7345 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPQ 1 2006-09-09 "( 4.2.3p41)" "Programmer's Manual"
+.TH NTPQ 1 2006-09-10 "( 4.2.3p42)" "Programmer's Manual"
 .\"  DO NOT EDIT THIS FILE   (ntpq.1)
 .\"  
-.\"  It has been AutoGen-ed  Saturday September  9, 2006 at 05:17:53 AM EDT
+.\"  It has been AutoGen-ed  Sunday September 10, 2006 at 07:45:53 AM EDT
 .\"  From the definitions    ntpq-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 8e83cf7f0a0c9e639a6e7514a26e96b4a8d13391..258a5c22fa8627cddfdbd27ca4aa4d3273d6d1b5 100644 (file)
@@ -9,7 +9,7 @@ version=${proto}.${major}.${minor}
 # - Numeric values increment
 # - empty 'increments' to 1
 # - NEW 'increments' to empty
-point=41
+point=42
 # Special.  Normally unused.  A suffix.
 #special=ag
 special=
index c698faa55d1ca56008ba99a169810bdbfab4d18f..0075a64b51ded1f126ec2d55126023896a5abe41 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (sntp-opts.c)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:21 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:46:21 AM EDT
  *  From the definitions    sntp-opts.def
  *  and the template file   options
  */
@@ -481,7 +481,7 @@ static tOptDesc optDesc[ OPTION_CT ] = {
  */
 tSCC   zPROGNAME[]   = "SNTP";
 tSCC   zUsageTitle[] =
-"sntp - standard SNTP program - Ver. 4.2.3p41\n\
+"sntp - standard SNTP program - Ver. 4.2.3p42\n\
 USAGE:  %s [ -<flag> | --<name> ]...\n";
 tSCC   zRcName[]     = ".ntprc";
 tSCC*  apzHomeList[] = {
index 9d6931e392a8dbe811741741d78e78fc7bdf9c79..de3fa40050c5a4a7c4ebd51d29dd463de6962ae9 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (sntp-opts.h)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:21 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:46:21 AM EDT
  *  From the definitions    sntp-opts.def
  *  and the template file   options
  */
@@ -145,48 +145,62 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    12
-#define SNTP_VERSION       "4.2.3p41"
-#define SNTP_FULL_VERSION  "sntp - standard SNTP program - Ver. 4.2.3p41"
+#define SNTP_VERSION       "4.2.3p42"
+#define SNTP_FULL_VERSION  "sntp - standard SNTP program - Ver. 4.2.3p42"
+
+/*
+ *  Interface defines for all options.  Replace "n" with the UPPER_CASED
+ *  option name (as in the teOptIndex enumeration above).
+ *  e.g. HAVE_OPT( IPV4 )
+ */
+#define         DESC(n) sntpOptions.pOptDesc[INDEX_OPT_ ## n]
+#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
+#define      OPT_ARG(n) (DESC(n).pzLastArg)
+#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
+#define    COUNT_OPT(n) (DESC(n).optOccCt)
+#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
+#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
+#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
+#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
+#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
+#define    CLEAR_OPT(n) STMTS( \
+                DESC(n).fOptState &= OPTST_PERSISTENT;   \
+                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
+                    DESC(n).fOptState |= OPTST_DISABLED; \
+                DESC(n).optCookie = NULL )
 
 /*
  *  Make sure there are no #define name conflicts with the option names
  */
-#ifndef NO_OPTION_NAME_WARNINGS
-# ifdef IPV4
-#  warn  undefining IPV4 due to option name conflict
-#  undef IPV4
+#ifndef     NO_OPTION_NAME_WARNINGS
+# ifdef    IPV4
+#  warning undefining IPV4 due to option name conflict
+#  undef   IPV4
 # endif
-
-# ifdef IPV6
-#  warn  undefining IPV6 due to option name conflict
-#  undef IPV6
+# ifdef    IPV6
+#  warning undefining IPV6 due to option name conflict
+#  undef   IPV6
 # endif
-
-# ifdef NORMALVERBOSE
-#  warn  undefining NORMALVERBOSE due to option name conflict
-#  undef NORMALVERBOSE
+# ifdef    NORMALVERBOSE
+#  warning undefining NORMALVERBOSE due to option name conflict
+#  undef   NORMALVERBOSE
 # endif
-
-# ifdef EXTRAVERBOSE
-#  warn  undefining EXTRAVERBOSE due to option name conflict
-#  undef EXTRAVERBOSE
+# ifdef    EXTRAVERBOSE
+#  warning undefining EXTRAVERBOSE due to option name conflict
+#  undef   EXTRAVERBOSE
 # endif
-
-# ifdef MEGAVERBOSE
-#  warn  undefining MEGAVERBOSE due to option name conflict
-#  undef MEGAVERBOSE
+# ifdef    MEGAVERBOSE
+#  warning undefining MEGAVERBOSE due to option name conflict
+#  undef   MEGAVERBOSE
 # endif
-
-# ifdef SETTIMEOFDAY
-#  warn  undefining SETTIMEOFDAY due to option name conflict
-#  undef SETTIMEOFDAY
+# ifdef    SETTIMEOFDAY
+#  warning undefining SETTIMEOFDAY due to option name conflict
+#  undef   SETTIMEOFDAY
 # endif
-
-# ifdef ADJTIME
-#  warn  undefining ADJTIME due to option name conflict
-#  undef ADJTIME
+# ifdef    ADJTIME
+#  warning undefining ADJTIME due to option name conflict
+#  undef   ADJTIME
 # endif
-
 #else  /* NO_OPTION_NAME_WARNINGS */
 # undef IPV4
 # undef IPV6
@@ -195,28 +209,7 @@ typedef enum {
 # undef MEGAVERBOSE
 # undef SETTIMEOFDAY
 # undef ADJTIME
-#endif /* NO_OPTION_NAME_WARNINGS */
-
-/*
- *  Interface defines for all options.  Replace "n" with
- *  the UPPER_CASED option name (as in the teOptIndex
- *  enumeration above).  e.g. HAVE_OPT( IPV4 )
- */
-#define        DESC(n) sntpOptions.pOptDesc[INDEX_OPT_ ## n]
-#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
-#define      OPT_ARG(n) (DESC(n).pzLastArg)
-#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
-#define    COUNT_OPT(n) (DESC(n).optOccCt)
-#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
-#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
-#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
-#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
-#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
-#define    CLEAR_OPT(n) STMTS( \
-                DESC(n).fOptState &= OPTST_PERSISTENT;   \
-                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
-                    DESC(n).fOptState |= OPTST_DISABLED; \
-                DESC(n).optCookie = NULL )
+#endif  /*  NO_OPTION_NAME_WARNINGS */
 
 /*
  *  Interface defines for specific options.
@@ -250,7 +243,7 @@ typedef enum {
                 sntpOptions.pzCurOpt  = NULL )
 #define START_OPT       RESTART_OPT(1)
 #define USAGE(c)        (*sntpOptions.pUsageProc)( &sntpOptions, c )
-/* extracted from opthead near line 316 */
+/* extracted from opthead near line 311 */
 
 /* * * * * *
  *
index 69a950488e03a7e1ddbd8e108c1642760606f874..2ccda9482b20f50f7dd70336a42eeebabdf425e7 100644 (file)
@@ -7,7 +7,7 @@
 # 
 # DO NOT EDIT THIS FILE   (sntp-opts.texi)
 # 
-# It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:24 AM EDT
+# It has been AutoGen-ed  Sunday September 10, 2006 at 07:46:24 AM EDT
 # From the definitions    sntp-opts.def
 # and the template file   aginfo.tpl
 @end ignore
index 92107025c697c3b3d23f85dd8a0ae7985dfe6e64..915ac65e5767fbfa51c3cd323cbbb0db24dbe00d 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntp-keygen-opts.c)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:31 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:47:13 AM EDT
  *  From the definitions    ntp-keygen-opts.def
  *  and the template file   options
  */
@@ -789,7 +789,7 @@ static tOptDesc optDesc[ OPTION_CT ] = {
  */
 tSCC   zPROGNAME[]   = "NTP_KEYGEN";
 tSCC   zUsageTitle[] =
-"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p41\n\
+"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p42\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
 tSCC   zRcName[]     = ".ntprc";
 tSCC*  apzHomeList[] = {
index abb3009e9ba8ad3413a7e8ad030b9962a476aa54..8a16452bb4c1571ed7c4da94f5c91abcc614c5e8 100644 (file)
@@ -2,7 +2,7 @@
  *  
  *  DO NOT EDIT THIS FILE   (ntp-keygen-opts.h)
  *  
- *  It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:30 AM EDT
+ *  It has been AutoGen-ed  Sunday September 10, 2006 at 07:47:13 AM EDT
  *  From the definitions    ntp-keygen-opts.def
  *  and the template file   options
  */
@@ -78,108 +78,110 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    24
-#define NTP_KEYGEN_VERSION       "4.2.3p41"
-#define NTP_KEYGEN_FULL_VERSION  "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p41"
+#define NTP_KEYGEN_VERSION       "4.2.3p42"
+#define NTP_KEYGEN_FULL_VERSION  "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p42"
+
+/*
+ *  Interface defines for all options.  Replace "n" with the UPPER_CASED
+ *  option name (as in the teOptIndex enumeration above).
+ *  e.g. HAVE_OPT( CERTIFICATE )
+ */
+#define         DESC(n) ntp_keygenOptions.pOptDesc[INDEX_OPT_ ## n]
+#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
+#define      OPT_ARG(n) (DESC(n).pzLastArg)
+#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
+#define    COUNT_OPT(n) (DESC(n).optOccCt)
+#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
+#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
+#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
+#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
+#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
+#define    CLEAR_OPT(n) STMTS( \
+                DESC(n).fOptState &= OPTST_PERSISTENT;   \
+                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
+                    DESC(n).fOptState |= OPTST_DISABLED; \
+                DESC(n).optCookie = NULL )
 
 /*
  *  Make sure there are no #define name conflicts with the option names
  */
-#ifndef NO_OPTION_NAME_WARNINGS
-# ifdef CERTIFICATE
-#  warn  undefining CERTIFICATE due to option name conflict
-#  undef CERTIFICATE
+#ifndef     NO_OPTION_NAME_WARNINGS
+# ifdef    CERTIFICATE
+#  warning undefining CERTIFICATE due to option name conflict
+#  undef   CERTIFICATE
 # endif
-
-# ifdef DEBUG_LEVEL
-#  warn  undefining DEBUG_LEVEL due to option name conflict
-#  undef DEBUG_LEVEL
+# ifdef    DEBUG_LEVEL
+#  warning undefining DEBUG_LEVEL due to option name conflict
+#  undef   DEBUG_LEVEL
 # endif
-
-# ifdef SET_DEBUG_LEVEL
-#  warn  undefining SET_DEBUG_LEVEL due to option name conflict
-#  undef SET_DEBUG_LEVEL
+# ifdef    SET_DEBUG_LEVEL
+#  warning undefining SET_DEBUG_LEVEL due to option name conflict
+#  undef   SET_DEBUG_LEVEL
 # endif
-
-# ifdef ID_KEY
-#  warn  undefining ID_KEY due to option name conflict
-#  undef ID_KEY
+# ifdef    ID_KEY
+#  warning undefining ID_KEY due to option name conflict
+#  undef   ID_KEY
 # endif
-
-# ifdef GQ_PARAMS
-#  warn  undefining GQ_PARAMS due to option name conflict
-#  undef GQ_PARAMS
+# ifdef    GQ_PARAMS
+#  warning undefining GQ_PARAMS due to option name conflict
+#  undef   GQ_PARAMS
 # endif
-
-# ifdef GQ_KEYS
-#  warn  undefining GQ_KEYS due to option name conflict
-#  undef GQ_KEYS
+# ifdef    GQ_KEYS
+#  warning undefining GQ_KEYS due to option name conflict
+#  undef   GQ_KEYS
 # endif
-
-# ifdef HOST_KEY
-#  warn  undefining HOST_KEY due to option name conflict
-#  undef HOST_KEY
+# ifdef    HOST_KEY
+#  warning undefining HOST_KEY due to option name conflict
+#  undef   HOST_KEY
 # endif
-
-# ifdef IFFKEY
-#  warn  undefining IFFKEY due to option name conflict
-#  undef IFFKEY
+# ifdef    IFFKEY
+#  warning undefining IFFKEY due to option name conflict
+#  undef   IFFKEY
 # endif
-
-# ifdef ISSUER_NAME
-#  warn  undefining ISSUER_NAME due to option name conflict
-#  undef ISSUER_NAME
+# ifdef    ISSUER_NAME
+#  warning undefining ISSUER_NAME due to option name conflict
+#  undef   ISSUER_NAME
 # endif
-
-# ifdef MD5KEY
-#  warn  undefining MD5KEY due to option name conflict
-#  undef MD5KEY
+# ifdef    MD5KEY
+#  warning undefining MD5KEY due to option name conflict
+#  undef   MD5KEY
 # endif
-
-# ifdef MODULUS
-#  warn  undefining MODULUS due to option name conflict
-#  undef MODULUS
+# ifdef    MODULUS
+#  warning undefining MODULUS due to option name conflict
+#  undef   MODULUS
 # endif
-
-# ifdef PVT_CERT
-#  warn  undefining PVT_CERT due to option name conflict
-#  undef PVT_CERT
+# ifdef    PVT_CERT
+#  warning undefining PVT_CERT due to option name conflict
+#  undef   PVT_CERT
 # endif
-
-# ifdef PVT_PASSWD
-#  warn  undefining PVT_PASSWD due to option name conflict
-#  undef PVT_PASSWD
+# ifdef    PVT_PASSWD
+#  warning undefining PVT_PASSWD due to option name conflict
+#  undef   PVT_PASSWD
 # endif
-
-# ifdef GET_PVT_PASSWD
-#  warn  undefining GET_PVT_PASSWD due to option name conflict
-#  undef GET_PVT_PASSWD
+# ifdef    GET_PVT_PASSWD
+#  warning undefining GET_PVT_PASSWD due to option name conflict
+#  undef   GET_PVT_PASSWD
 # endif
-
-# ifdef SIGN_KEY
-#  warn  undefining SIGN_KEY due to option name conflict
-#  undef SIGN_KEY
+# ifdef    SIGN_KEY
+#  warning undefining SIGN_KEY due to option name conflict
+#  undef   SIGN_KEY
 # endif
-
-# ifdef SUBJECT_NAME
-#  warn  undefining SUBJECT_NAME due to option name conflict
-#  undef SUBJECT_NAME
+# ifdef    SUBJECT_NAME
+#  warning undefining SUBJECT_NAME due to option name conflict
+#  undef   SUBJECT_NAME
 # endif
-
-# ifdef TRUSTED_CERT
-#  warn  undefining TRUSTED_CERT due to option name conflict
-#  undef TRUSTED_CERT
+# ifdef    TRUSTED_CERT
+#  warning undefining TRUSTED_CERT due to option name conflict
+#  undef   TRUSTED_CERT
 # endif
-
-# ifdef MV_PARAMS
-#  warn  undefining MV_PARAMS due to option name conflict
-#  undef MV_PARAMS
+# ifdef    MV_PARAMS
+#  warning undefining MV_PARAMS due to option name conflict
+#  undef   MV_PARAMS
 # endif
-
-# ifdef MV_KEYS
-#  warn  undefining MV_KEYS due to option name conflict
-#  undef MV_KEYS
+# ifdef    MV_KEYS
+#  warning undefining MV_KEYS due to option name conflict
+#  undef   MV_KEYS
 # endif
-
 #else  /* NO_OPTION_NAME_WARNINGS */
 # undef CERTIFICATE
 # undef DEBUG_LEVEL
@@ -200,28 +202,7 @@ typedef enum {
 # undef TRUSTED_CERT
 # undef MV_PARAMS
 # undef MV_KEYS
-#endif /* NO_OPTION_NAME_WARNINGS */
-
-/*
- *  Interface defines for all options.  Replace "n" with
- *  the UPPER_CASED option name (as in the teOptIndex
- *  enumeration above).  e.g. HAVE_OPT( CERTIFICATE )
- */
-#define        DESC(n) ntp_keygenOptions.pOptDesc[INDEX_OPT_ ## n]
-#define     HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
-#define      OPT_ARG(n) (DESC(n).pzLastArg)
-#define    STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
-#define    COUNT_OPT(n) (DESC(n).optOccCt)
-#define    ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
-#define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
-#define  ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
-#define  STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
-#define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
-#define    CLEAR_OPT(n) STMTS( \
-                DESC(n).fOptState &= OPTST_PERSISTENT;   \
-                if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
-                    DESC(n).fOptState |= OPTST_DISABLED; \
-                DESC(n).optCookie = NULL )
+#endif  /*  NO_OPTION_NAME_WARNINGS */
 
 /*
  *  Interface defines for specific options.
@@ -304,7 +285,7 @@ typedef enum {
                 ntp_keygenOptions.pzCurOpt  = NULL )
 #define START_OPT       RESTART_OPT(1)
 #define USAGE(c)        (*ntp_keygenOptions.pUsageProc)( &ntp_keygenOptions, c )
-/* extracted from opthead near line 316 */
+/* extracted from opthead near line 311 */
 
 /* * * * * *
  *
index 14636e9b66cdce098e8a639241378fe593134532..52e7b2f9a0bfb2f9f5c0e9ec4fa98a9cca031743 100644 (file)
@@ -7,7 +7,7 @@
 # 
 # DO NOT EDIT THIS FILE   (ntp-keygen-opts.texi)
 # 
-# It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:33 AM EDT
+# It has been AutoGen-ed  Sunday September 10, 2006 at 07:47:16 AM EDT
 # From the definitions    ntp-keygen-opts.def
 # and the template file   aginfo.tpl
 @end ignore
index 1919310eea1aa1284deb58386d18cdefd30abd95..f918825ee2886d39c81231aeb37f1be2e546d862 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTP-KEYGEN 1 2006-09-09 "(ntp 4.2.3p41)" "Programmer's Manual"
+.TH NTP-KEYGEN 1 2006-09-10 "(ntp 4.2.3p42)" "Programmer's Manual"
 .\"  DO NOT EDIT THIS FILE   (ntp-keygen.1)
 .\"  
-.\"  It has been AutoGen-ed  Saturday September  9, 2006 at 05:18:32 AM EDT
+.\"  It has been AutoGen-ed  Sunday September 10, 2006 at 07:47:15 AM EDT
 .\"  From the definitions    ntp-keygen-opts.def
 .\"  and the template file   agman1.tpl
 .\"