]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
NTP_4_2_6P4_RC1 NTP_4_2_6P4_RC1
authorHarlan Stenn <stenn@ntp.org>
Mon, 11 Jul 2011 03:03:48 +0000 (23:03 -0400)
committerHarlan Stenn <stenn@ntp.org>
Mon, 11 Jul 2011 03:03:48 +0000 (23:03 -0400)
bk: 4e1a6814wcYAATHzuS4zm8DlMDcD6w

27 files changed:
ChangeLog
ntpd/ntpd-opts.c
ntpd/ntpd-opts.h
ntpd/ntpd-opts.texi
ntpd/ntpd.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
ntpsnmpd/ntpsnmpd-opts.c
ntpsnmpd/ntpsnmpd-opts.h
ntpsnmpd/ntpsnmpd-opts.texi
ntpsnmpd/ntpsnmpd.1
packageinfo.sh
sntp/sntp-opts.c
sntp/sntp-opts.h
sntp/sntp-opts.texi
sntp/sntp.1
sntp/sntp.html
util/ntp-keygen-opts.c
util/ntp-keygen-opts.h
util/ntp-keygen-opts.texi
util/ntp-keygen.1

index a09d264589ba7282c0a2b302e4f8e8d15e01664a..75873eca1abdea30f5992eb4073c3e18a7336132 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,5 @@
 ---
+(4.2.6p4-RC1) 2011/07/10 Released by Harlan Stenn <stenn@ntp.org>
 
 * [Bug 1134] ntpd fails binding to tentative IPv6 addresses.
 * [Bug 1790] Update config.guess and config.sub to detect AIX6.
index 3ef2d14f0834b2ddf07ec887325d2045467f8ad9..f0d6a7db4e04c3624cab1676aecfdc624c8c999c 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpd-opts.c)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:20:33 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:55:09 PM by AutoGen 5.12
  *  From the definitions    ntpd-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpd copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 
 #include <sys/types.h>
@@ -39,8 +37,8 @@ extern FILE * option_usage_fp;
 
 /* TRANSLATORS: choose the translation for option names wisely because you
                 cannot ever change your mind. */
-static char const zCopyright[44] =
-"ntpd 4.2.6p4-beta2\n\
+static char const zCopyright[42] =
+"ntpd 4.2.6p4-RC1\n\
 see html/copyright.html\n";
 static char const zLicenseDescrip[25] =
 "see html/copyright.html\n";
@@ -949,8 +947,8 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Ntpd Option Environment
  */
 static char const zPROGNAME[5] = "NTPD";
-static char const zUsageTitle[105] =
-"ntpd - NTP daemon program - Ver. 4.2.6p4-beta2\n\
+static char const zUsageTitle[103] =
+"ntpd - NTP daemon program - Ver. 4.2.6p4-RC1\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
 #define zRcName     NULL
 #define apzHomeList NULL
index 6412da98ad82a799a376e096d2f9c16e9de39435..4f6db2c041714dfcec29250a788984093cc74e50 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpd-opts.h)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:20:33 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:55:08 PM by AutoGen 5.12
  *  From the definitions    ntpd-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpd copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 /*
  *  This file contains the programmatic interface to the Automated
@@ -89,8 +87,8 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    35
-#define NTPD_VERSION       "4.2.6p4-beta2"
-#define NTPD_FULL_VERSION  "ntpd 4.2.6p4-beta2"
+#define NTPD_VERSION       "4.2.6p4-RC1"
+#define NTPD_FULL_VERSION  "ntpd 4.2.6p4-RC1"
 
 /*
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
@@ -356,10 +354,10 @@ extern tOptions ntpdOptions;
 #if defined(ENABLE_NLS)
 # ifndef _
 #   include <stdio.h>
-    static inline char* aoGetsText(char const* pz) {
-        if (pz == NULL) return NULL;
-        return (char*)gettext(pz);
-    }
+static inline char* aoGetsText(char const* pz) {
+    if (pz == NULL) return NULL;
+    return (char*)gettext(pz);
+}
 #   define _(s)  aoGetsText(s)
 # endif /* _() */
 
index f86ee5d57ccdb7dd3ec94322d2975adf827fcf16..7ac2df4a798a54bc382f98961df62cea3c4f9a45 100644 (file)
@@ -6,7 +6,7 @@
 # 
 # EDIT THIS FILE WITH CAUTION  (ntpd-opts.texi)
 # 
-# It has been AutoGen-ed  May 25, 2011 at 01:22:41 AM by AutoGen 5.11.9
+# It has been AutoGen-ed  July 10, 2011 at 10:56:14 PM by AutoGen 5.12
 # From the definitions    ntpd-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -15,7 +15,7 @@ This program has no explanation.
 
 
 This section was generated by @strong{AutoGen},
-the aginfo template and the option descriptions for the @command{ntpd} program.  It documents the ntpd usage text and option meanings.
+the aginfo template and the option descriptions for the @command{ntpd} program.  It documents the @command{ntpd} usage text and option meanings.
 
 This software is released under a specialized copyright license.
 
@@ -63,7 +63,7 @@ This is the automatically generated usage text for ntpd:
 
 @exampleindent 0
 @example
-ntpd - NTP daemon program - Ver. 4.2.6p4-beta2
+ntpd - NTP daemon program - Ver. 4.2.6p4-RC1
 USAGE:  ntpd [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]...
   Flg Arg Option-Name    Description
    -4 no  ipv4           Force IPv4 DNS name resolution
index 2bdef015582707cffc3d287fd685a1409f30258b..4382dd360394382c225c17a5237268689798c131 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPD 1 2011-05-25 "( 4.2.6p4-beta2)" "Programmer's Manual"
+.TH NTPD 1 2011-07-10 "( 4.2.6p4-RC1)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (ntpd.1)
 .\"  
-.\"  It has been AutoGen-ed  May 25, 2011 at 01:22:40 AM by AutoGen 5.11.9
+.\"  It has been AutoGen-ed  July 10, 2011 at 10:56:12 PM by AutoGen 5.12
 .\"  From the definitions    ntpd-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index e789277bdfd921afe9b2659200ece240da4f075e..0dd8aa39a74556b2d74d225bacbc462c53d0e0eb 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpdc-opts.c)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:22:50 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:56:37 PM by AutoGen 5.12
  *  From the definitions    ntpdc-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpdc copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 
 #include <sys/types.h>
@@ -39,8 +37,8 @@ extern FILE * option_usage_fp;
 
 /* TRANSLATORS: choose the translation for option names wisely because you
                 cannot ever change your mind. */
-static char const zCopyright[45] =
-"ntpdc 4.2.6p4-beta2\n\
+static char const zCopyright[43] =
+"ntpdc 4.2.6p4-RC1\n\
 see html/copyright.html\n";
 static char const zLicenseDescrip[25] =
 "see html/copyright.html\n";
@@ -446,8 +444,8 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Ntpdc Option Environment
  */
 static char const zPROGNAME[6] = "NTPDC";
-static char const zUsageTitle[133] =
-"ntpdc - vendor-specific NTP query program - Ver. 4.2.6p4-beta2\n\
+static char const zUsageTitle[131] =
+"ntpdc - vendor-specific NTP query program - Ver. 4.2.6p4-RC1\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
 static char const zRcName[7] = ".ntprc";
 static char const * const apzHomeList[3] = {
index 3a4fb57a02461923d72e5fd2b265e567ea096f39..4956ff4ae003865d589a8fe94d44d834461cff7f 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpdc-opts.h)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:22:50 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:56:36 PM by AutoGen 5.12
  *  From the definitions    ntpdc-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpdc copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 /*
  *  This file contains the programmatic interface to the Automated
@@ -69,8 +67,8 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    15
-#define NTPDC_VERSION       "4.2.6p4-beta2"
-#define NTPDC_FULL_VERSION  "ntpdc 4.2.6p4-beta2"
+#define NTPDC_VERSION       "4.2.6p4-RC1"
+#define NTPDC_FULL_VERSION  "ntpdc 4.2.6p4-RC1"
 
 /*
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
@@ -206,10 +204,10 @@ extern tOptions ntpdcOptions;
 #if defined(ENABLE_NLS)
 # ifndef _
 #   include <stdio.h>
-    static inline char* aoGetsText(char const* pz) {
-        if (pz == NULL) return NULL;
-        return (char*)gettext(pz);
-    }
+static inline char* aoGetsText(char const* pz) {
+    if (pz == NULL) return NULL;
+    return (char*)gettext(pz);
+}
 #   define _(s)  aoGetsText(s)
 # endif /* _() */
 
index c6821f851d1d030129fd2b2ae1de012459b0516d..aa7a8ff3afae80178eb3232b1fcde4990e1cd96c 100644 (file)
@@ -6,7 +6,7 @@
 # 
 # EDIT THIS FILE WITH CAUTION  (ntpdc-opts.texi)
 # 
-# It has been AutoGen-ed  May 25, 2011 at 01:23:01 AM by AutoGen 5.11.9
+# It has been AutoGen-ed  July 10, 2011 at 10:57:21 PM by AutoGen 5.12
 # From the definitions    ntpdc-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -32,7 +32,7 @@ ntpd's configuration file may also be specified at run time using
 
 
 This section was generated by @strong{AutoGen},
-the aginfo template and the option descriptions for the @command{ntpdc} program.  It documents the ntpdc usage text and option meanings.
+the aginfo template and the option descriptions for the @command{ntpdc} program.  It documents the @command{ntpdc} usage text and option meanings.
 
 This software is released under a specialized copyright license.
 
@@ -58,7 +58,7 @@ This is the automatically generated usage text for ntpdc:
 
 @exampleindent 0
 @example
-ntpdc - vendor-specific NTP query program - Ver. 4.2.6p4-beta2
+ntpdc - vendor-specific NTP query program - Ver. 4.2.6p4-RC1
 USAGE:  ntpdc [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... [ host ...]
   Flg Arg Option-Name    Description
    -4 no  ipv4           Force IPv4 DNS name resolution
index f3efe5fdb3c25afcde05490d9beb4feb2aa2080b..6d805a2190717153bf2bace94cbb2a5b428b0205 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPDC 1 2011-05-25 "( 4.2.6p4-beta2)" "Programmer's Manual"
+.TH NTPDC 1 2011-07-10 "( 4.2.6p4-RC1)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (ntpdc.1)
 .\"  
-.\"  It has been AutoGen-ed  May 25, 2011 at 01:23:01 AM by AutoGen 5.11.9
+.\"  It has been AutoGen-ed  July 10, 2011 at 10:57:19 PM by AutoGen 5.12
 .\"  From the definitions    ntpdc-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 3978e7fdb5ad238a41ca9890c4c12927c69538ef..f297b3047f24fe28af64dda9d92d5e6c0f583bab 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpq-opts.c)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:23:02 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:57:24 PM by AutoGen 5.12
  *  From the definitions    ntpq-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpq copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 
 #include <sys/types.h>
@@ -39,8 +37,8 @@ extern FILE * option_usage_fp;
 
 /* TRANSLATORS: choose the translation for option names wisely because you
                 cannot ever change your mind. */
-static char const zCopyright[44] =
-"ntpq 4.2.6p4-beta2\n\
+static char const zCopyright[42] =
+"ntpq 4.2.6p4-RC1\n\
 see html/copyright.html\n";
 static char const zLicenseDescrip[25] =
 "see html/copyright.html\n";
@@ -423,8 +421,8 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Ntpq Option Environment
  */
 static char const zPROGNAME[5] = "NTPQ";
-static char const zUsageTitle[125] =
-"ntpq - standard NTP query program - Ver. 4.2.6p4-beta2\n\
+static char const zUsageTitle[123] =
+"ntpq - standard NTP query program - Ver. 4.2.6p4-RC1\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
 static char const zRcName[7] = ".ntprc";
 static char const * const apzHomeList[3] = {
index da09ad1d22dc844b8ffd4f55ad22767d3b878114..d2f3f1fedfe4b4303bd21239f208f2c736feba97 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpq-opts.h)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:23:02 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:57:23 PM by AutoGen 5.12
  *  From the definitions    ntpq-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpq copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 /*
  *  This file contains the programmatic interface to the Automated
@@ -68,8 +66,8 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    14
-#define NTPQ_VERSION       "4.2.6p4-beta2"
-#define NTPQ_FULL_VERSION  "ntpq 4.2.6p4-beta2"
+#define NTPQ_VERSION       "4.2.6p4-RC1"
+#define NTPQ_FULL_VERSION  "ntpq 4.2.6p4-RC1"
 
 /*
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
@@ -199,10 +197,10 @@ extern tOptions ntpqOptions;
 #if defined(ENABLE_NLS)
 # ifndef _
 #   include <stdio.h>
-    static inline char* aoGetsText(char const* pz) {
-        if (pz == NULL) return NULL;
-        return (char*)gettext(pz);
-    }
+static inline char* aoGetsText(char const* pz) {
+    if (pz == NULL) return NULL;
+    return (char*)gettext(pz);
+}
 #   define _(s)  aoGetsText(s)
 # endif /* _() */
 
index 3e0ac3df792a236a7274c96c35f7cd9660089c58..baed8566c60f28b30225680fa5b455b8cd824e8b 100644 (file)
@@ -6,7 +6,7 @@
 # 
 # EDIT THIS FILE WITH CAUTION  (ntpq-opts.texi)
 # 
-# It has been AutoGen-ed  May 25, 2011 at 01:23:19 AM by AutoGen 5.11.9
+# It has been AutoGen-ed  July 10, 2011 at 10:58:52 PM by AutoGen 5.12
 # From the definitions    ntpq-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -22,7 +22,7 @@ The same formats are used in NTPv4, although some of the
 variables have changed and new ones added.
 
 This section was generated by @strong{AutoGen},
-the aginfo template and the option descriptions for the @command{ntpq} program.  It documents the ntpq usage text and option meanings.
+the aginfo template and the option descriptions for the @command{ntpq} program.  It documents the @command{ntpq} usage text and option meanings.
 
 This software is released under a specialized copyright license.
 
@@ -47,7 +47,7 @@ This is the automatically generated usage text for ntpq:
 
 @exampleindent 0
 @example
-ntpq - standard NTP query program - Ver. 4.2.6p4-beta2
+ntpq - standard NTP query program - Ver. 4.2.6p4-RC1
 USAGE:  ntpq [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... [ host ...]
   Flg Arg Option-Name    Description
    -4 no  ipv4           Force IPv4 DNS name resolution
index 7fb18a9e4b8410077bd20263c9428b01fdb1da66..a5aee764e450b43015b5d3d51b79b84237898895 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPQ 1 2011-05-25 "( 4.2.6p4-beta2)" "Programmer's Manual"
+.TH NTPQ 1 2011-07-10 "( 4.2.6p4-RC1)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (ntpq.1)
 .\"  
-.\"  It has been AutoGen-ed  May 25, 2011 at 01:23:19 AM by AutoGen 5.11.9
+.\"  It has been AutoGen-ed  July 10, 2011 at 10:58:46 PM by AutoGen 5.12
 .\"  From the definitions    ntpq-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 93cabba13a13f5656043006b231120a241d24f94..5d0e81350759c01c405cc9e710737d76d67de5c1 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpsnmpd-opts.c)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:23:20 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:59:10 PM by AutoGen 5.12
  *  From the definitions    ntpsnmpd-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpsnmpd copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 
 #include <sys/types.h>
@@ -39,8 +37,8 @@ extern FILE * option_usage_fp;
 
 /* TRANSLATORS: choose the translation for option names wisely because you
                 cannot ever change your mind. */
-static char const zCopyright[48] =
-"ntpsnmpd 4.2.6p4-beta2\n\
+static char const zCopyright[46] =
+"ntpsnmpd 4.2.6p4-RC1\n\
 see html/copyright.html\n";
 static char const zLicenseDescrip[25] =
 "see html/copyright.html\n";
@@ -250,8 +248,8 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Ntpsnmpd Option Environment
  */
 static char const zPROGNAME[9] = "NTPSNMPD";
-static char const zUsageTitle[109] =
-"ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.6p4-beta2\n\
+static char const zUsageTitle[107] =
+"ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.6p4-RC1\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
 static char const zRcName[7] = ".ntprc";
 static char const * const apzHomeList[3] = {
index bb731551830ea3382aa5d021046ecd9547a0a6b2..450343b7344e1e031e8431ecaa9fc413453ccc21 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntpsnmpd-opts.h)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:23:20 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:59:08 PM by AutoGen 5.12
  *  From the definitions    ntpsnmpd-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntpsnmpd copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 /*
  *  This file contains the programmatic interface to the Automated
@@ -62,8 +60,8 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    8
-#define NTPSNMPD_VERSION       "4.2.6p4-beta2"
-#define NTPSNMPD_FULL_VERSION  "ntpsnmpd 4.2.6p4-beta2"
+#define NTPSNMPD_VERSION       "4.2.6p4-RC1"
+#define NTPSNMPD_FULL_VERSION  "ntpsnmpd 4.2.6p4-RC1"
 
 /*
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
@@ -157,10 +155,10 @@ extern tOptions ntpsnmpdOptions;
 #if defined(ENABLE_NLS)
 # ifndef _
 #   include <stdio.h>
-    static inline char* aoGetsText(char const* pz) {
-        if (pz == NULL) return NULL;
-        return (char*)gettext(pz);
-    }
+static inline char* aoGetsText(char const* pz) {
+    if (pz == NULL) return NULL;
+    return (char*)gettext(pz);
+}
 #   define _(s)  aoGetsText(s)
 # endif /* _() */
 
index 7e08b1ebca9eeb881e92f76d410c94270351f273..0e1bfe74faecf9e2f8df59462c3467d39c941a98 100644 (file)
@@ -6,7 +6,7 @@
 # 
 # EDIT THIS FILE WITH CAUTION  (ntpsnmpd-opts.texi)
 # 
-# It has been AutoGen-ed  May 25, 2011 at 01:23:29 AM by AutoGen 5.11.9
+# It has been AutoGen-ed  July 10, 2011 at 11:00:02 PM by AutoGen 5.12
 # From the definitions    ntpsnmpd-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -15,7 +15,7 @@ This program has no explanation.
 
 
 This section was generated by @strong{AutoGen},
-the aginfo template and the option descriptions for the @command{ntpsnmpd} program.  It documents the ntpsnmpd usage text and option meanings.
+the aginfo template and the option descriptions for the @command{ntpsnmpd} program.  It documents the @command{ntpsnmpd} usage text and option meanings.
 
 This software is released under a specialized copyright license.
 
@@ -34,7 +34,7 @@ This is the automatically generated usage text for ntpsnmpd:
 
 @exampleindent 0
 @example
-ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.6p4-beta2
+ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.6p4-RC1
 USAGE:  ntpsnmpd [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]...
   Flg Arg Option-Name    Description
    -n no  nofork         Do not fork
index 1a9fa98ce7cd47f631d64f11ad27245b9ea9ad14..05e80137129726611c7da767efd69fa160408e3b 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTPSNMPD 1 2011-05-25 "( 4.2.6p4-beta2)" "Programmer's Manual"
+.TH NTPSNMPD 1 2011-07-10 "( 4.2.6p4-RC1)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (ntpsnmpd.1)
 .\"  
-.\"  It has been AutoGen-ed  May 25, 2011 at 01:23:29 AM by AutoGen 5.11.9
+.\"  It has been AutoGen-ed  July 10, 2011 at 10:59:59 PM by AutoGen 5.12
 .\"  From the definitions    ntpsnmpd-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 0c28a17d01f0f6718976aecc1a30f79871d7b033..125a1fd88caa32f498e2ef487b9188c62907239f 100644 (file)
@@ -91,4 +91,4 @@ betapoint=2
 # - - prerelease is emptied
 # else (not in RC)
 # - rcpoint is empty and unused (for now).
-rcpoint=
+rcpoint=1
index eefe9b0fd292433c18974dd2e3d1f9bbc7db1d94..86011f4010a1374f2363ed33e56d9b03bd793f2c 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (sntp-opts.c)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 05:14:52 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:54:33 PM by AutoGen 5.12
  *  From the definitions    sntp-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * sntp copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 
 #include <sys/types.h>
@@ -39,8 +37,8 @@ extern FILE * option_usage_fp;
 
 /* TRANSLATORS: choose the translation for option names wisely because you
                 cannot ever change your mind. */
-static char const zCopyright[44] =
-"sntp 4.2.6p4-beta2\n\
+static char const zCopyright[42] =
+"sntp 4.2.6p4-RC1\n\
 see html/copyright.html\n";
 static char const zLicenseDescrip[25] =
 "see html/copyright.html\n";
@@ -468,8 +466,8 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Sntp Option Environment
  */
 static char const zPROGNAME[5] = "SNTP";
-static char const zUsageTitle[127] =
-"sntp - standard SNTP program - Ver. 4.2.6p4-beta2\n\
+static char const zUsageTitle[125] =
+"sntp - standard SNTP program - Ver. 4.2.6p4-RC1\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... hostname-or-IP ...\n";
 static char const zRcName[7] = ".ntprc";
 static char const * const apzHomeList[3] = {
index cbaa2d5ce2cc62d43b8bda3c35c2c20411a022e8..2835611a2c4008c70def91dd1c5129a566fffd52 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (sntp-opts.h)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 05:14:52 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 10:54:32 PM by AutoGen 5.12
  *  From the definitions    sntp-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * sntp copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 /*
  *  This file contains the programmatic interface to the Automated
@@ -71,8 +69,8 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    17
-#define SNTP_VERSION       "4.2.6p4-beta2"
-#define SNTP_FULL_VERSION  "sntp 4.2.6p4-beta2"
+#define SNTP_VERSION       "4.2.6p4-RC1"
+#define SNTP_FULL_VERSION  "sntp 4.2.6p4-RC1"
 
 /*
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
@@ -224,10 +222,10 @@ extern tOptions sntpOptions;
 #if defined(ENABLE_NLS)
 # ifndef _
 #   include <stdio.h>
-    static inline char* aoGetsText(char const* pz) {
-        if (pz == NULL) return NULL;
-        return (char*)gettext(pz);
-    }
+static inline char* aoGetsText(char const* pz) {
+    if (pz == NULL) return NULL;
+    return (char*)gettext(pz);
+}
 #   define _(s)  aoGetsText(s)
 # endif /* _() */
 
index 43d47360fbc173e1d8be85f4674679fb3349efb0..f09ce047950f9e195544963eb352674e2605bdb7 100644 (file)
@@ -6,7 +6,7 @@
 # 
 # EDIT THIS FILE WITH CAUTION  (sntp-opts.texi)
 # 
-# It has been AutoGen-ed  May 25, 2011 at 01:20:32 AM by AutoGen 5.11.9
+# It has been AutoGen-ed  July 10, 2011 at 10:55:06 PM by AutoGen 5.12
 # From the definitions    sntp-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -41,7 +41,7 @@ is believed to be correct to within
 seconds.
 
 This section was generated by @strong{AutoGen},
-the aginfo template and the option descriptions for the @command{sntp} program.  It documents the sntp usage text and option meanings.
+the aginfo template and the option descriptions for the @command{sntp} program.  It documents the @command{sntp} usage text and option meanings.
 
 This software is released under a specialized copyright license.
 
@@ -69,7 +69,7 @@ This is the automatically generated usage text for sntp:
 
 @exampleindent 0
 @example
-sntp - standard SNTP program - Ver. 4.2.6p4-beta2
+sntp - standard SNTP program - Ver. 4.2.6p4-RC1
 USAGE:  sntp [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... hostname-or-IP ...
   Flg Arg Option-Name    Description
    -4 no  ipv4           Force IPv4 DNS name resolution
index 083b652c3b2449e3b26038b6abba2e64f59ef740..afebbac817fe3ed9d3f382d32aa47e1346d02bdb 100644 (file)
@@ -1,7 +1,7 @@
-.TH SNTP 1 2011-05-25 "( 4.2.6p4-beta2)" "Programmer's Manual"
+.TH SNTP 1 2011-07-10 "( 4.2.6p4-RC1)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (sntp.1)
 .\"  
-.\"  It has been AutoGen-ed  May 25, 2011 at 01:20:31 AM by AutoGen 5.11.9
+.\"  It has been AutoGen-ed  July 10, 2011 at 10:55:04 PM by AutoGen 5.12
 .\"  From the definitions    sntp-opts.def
 .\"  and the template file   agman1.tpl
 .\"
index 81302f77aff53871a426aa79d0405a363198f08e..c29422cc607b028230633b0cc2b92cf24a5d75b9 100644 (file)
@@ -36,7 +36,7 @@ display the time offset of the system clock relative to the server
 clock.  Run as root, it can correct the system clock to this offset as
 well.  It can be run as an interactive command or from a cron job.
 
-  <p>This document applies to version 4.2.6p4-beta2 of <code>sntp</code>.
+  <p>This document applies to version 4.2.6p4-RC1 of <code>sntp</code>.
 
   <p>The program implements the SNTP protocol as defined by RFC 5905, the NTPv4
 IETF specification.
@@ -107,7 +107,7 @@ is believed to be correct to within
 seconds.
 
   <p>This section was generated by <strong>AutoGen</strong>,
-the aginfo template and the option descriptions for the <span class="command">sntp</span> program.  It documents the sntp usage text and option meanings.
+the aginfo template and the option descriptions for the <span class="command">sntp</span> program.  It documents the <span class="command">sntp</span> usage text and option meanings.
 
   <p>This software is released under a specialized copyright license.
 
@@ -139,7 +139,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
 <p><a name="index-sntp-usage-3"></a>
 This is the automatically generated usage text for sntp:
 
-<pre class="example">sntp - standard SNTP program - Ver. 4.2.6p4-beta2
+<pre class="example">sntp - standard SNTP program - Ver. 4.2.6p4-RC1
 USAGE:  sntp [ -&lt;flag&gt; [&lt;val&gt;] | --&lt;name&gt;[{=| }&lt;val&gt;] ]... hostname-or-IP ...
   Flg Arg Option-Name    Description
    -4 no  ipv4           Force IPv4 DNS name resolution
index ccf44c576b8109c476ba0b6b2595d1a95c782a33..daabbf4e3116f3dce989511dee38966861a0af0c 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntp-keygen-opts.c)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:23:31 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 11:00:12 PM by AutoGen 5.12
  *  From the definitions    ntp-keygen-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntp-keygen copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 
 #include <sys/types.h>
@@ -39,8 +37,8 @@ extern FILE * option_usage_fp;
 
 /* TRANSLATORS: choose the translation for option names wisely because you
                 cannot ever change your mind. */
-static char const zCopyright[56] =
-"ntp-keygen (ntp) 4.2.6p4-beta2\n\
+static char const zCopyright[54] =
+"ntp-keygen (ntp) 4.2.6p4-RC1\n\
 see html/copyright.html\n";
 static char const zLicenseDescrip[25] =
 "see html/copyright.html\n";
@@ -721,8 +719,8 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Ntp_Keygen Option Environment
  */
 static char const zPROGNAME[11] = "NTP_KEYGEN";
-static char const zUsageTitle[120] =
-"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.6p4-beta2\n\
+static char const zUsageTitle[118] =
+"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.6p4-RC1\n\
 USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
 static char const zRcName[7] = ".ntprc";
 static char const * const apzHomeList[3] = {
index e344fc7afb3f56847503fb8e4c1d8c6fac7dd968..838a4e7078e6d6f513911798b3ef865b38b76b46 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (ntp-keygen-opts.h)
  *  
- *  It has been AutoGen-ed  May 25, 2011 at 01:23:31 AM by AutoGen 5.11.9
+ *  It has been AutoGen-ed  July 10, 2011 at 11:00:09 PM by AutoGen 5.12
  *  From the definitions    ntp-keygen-opts.def
  *  and the template file   options
  *
  *
  * This source file is copyrighted and licensed under the following terms:
  *
- * ntp-keygen copyright (c) 1970-2011 David L. Mills and/or others - all rights reserved
- *
- * see html/copyright.html
- * 
+ *  see html/copyright.html
+ *  
  */
 /*
  *  This file contains the programmatic interface to the Automated
@@ -77,8 +75,8 @@ typedef enum {
 } teOptIndex;
 
 #define OPTION_CT    23
-#define NTP_KEYGEN_VERSION       "4.2.6p4-beta2"
-#define NTP_KEYGEN_FULL_VERSION  "ntp-keygen (ntp) 4.2.6p4-beta2"
+#define NTP_KEYGEN_VERSION       "4.2.6p4-RC1"
+#define NTP_KEYGEN_FULL_VERSION  "ntp-keygen (ntp) 4.2.6p4-RC1"
 
 /*
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
@@ -274,10 +272,10 @@ extern tOptions ntp_keygenOptions;
 #if defined(ENABLE_NLS)
 # ifndef _
 #   include <stdio.h>
-    static inline char* aoGetsText(char const* pz) {
-        if (pz == NULL) return NULL;
-        return (char*)gettext(pz);
-    }
+static inline char* aoGetsText(char const* pz) {
+    if (pz == NULL) return NULL;
+    return (char*)gettext(pz);
+}
 #   define _(s)  aoGetsText(s)
 # endif /* _() */
 
index 9796ad4707f6eeff829f41ddabcdb27da9a3184f..44b823d5a397e45373e938560b90fe5670d1e475 100644 (file)
@@ -6,7 +6,7 @@
 # 
 # EDIT THIS FILE WITH CAUTION  (ntp-keygen-opts.texi)
 # 
-# It has been AutoGen-ed  May 25, 2011 at 01:23:40 AM by AutoGen 5.11.9
+# It has been AutoGen-ed  July 10, 2011 at 11:01:50 PM by AutoGen 5.12
 # From the definitions    ntp-keygen-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -16,7 +16,7 @@ If there is no new host key, look for an existing one.
 If one is not found, create it.
 
 This section was generated by @strong{AutoGen},
-the aginfo template and the option descriptions for the @command{ntp-keygen} program.  It documents the ntp-keygen usage text and option meanings.
+the aginfo template and the option descriptions for the @command{ntp-keygen} program.  It documents the @command{ntp-keygen} usage text and option meanings.
 
 This software is released under a specialized copyright license.
 
@@ -50,7 +50,7 @@ This is the automatically generated usage text for ntp-keygen:
 
 @exampleindent 0
 @example
-ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.6p4-beta2
+ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.6p4-RC1
 USAGE:  ntp-keygen [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]...
   Flg Arg Option-Name    Description
    -c Str certificate    certificate scheme
index 0229be9118cdc8cf6a9ad71bd6957d9562566a2b..0a5c374c4b26acf030f7075168367f9da7d44a18 100644 (file)
@@ -1,7 +1,7 @@
-.TH NTP-KEYGEN 1 2011-05-25 "(ntp 4.2.6p4-beta2)" "Programmer's Manual"
+.TH NTP-KEYGEN 1 2011-07-10 "(ntp 4.2.6p4-RC1)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (ntp-keygen.1)
 .\"  
-.\"  It has been AutoGen-ed  May 25, 2011 at 01:23:39 AM by AutoGen 5.11.9
+.\"  It has been AutoGen-ed  July 10, 2011 at 11:01:43 PM by AutoGen 5.12
 .\"  From the definitions    ntp-keygen-opts.def
 .\"  and the template file   agman1.tpl
 .\"