+(4.2.5p143) 2008/11/17 Released by Harlan Stenn <stenn@ntp.org>
* sntp cleanup and fixes.
(4.2.5p142) 2008/11/16 Released by Harlan Stenn <stenn@ntp.org>
* Imported GSoC SNTP code from Johannes Maximilian Kühn.
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.c)
*
- * It has been AutoGen-ed Monday November 17, 2008 at 03:26:32 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:50:45 AM EST
* From the definitions sntp-opts.def
* and the template file options
*
| OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
/*
- * Help/More_Help option descriptions:
+ * Help/More_Help/Version option descriptions:
*/
tSCC zHelpText[] = "Display usage information and exit";
tSCC zHelp_Name[] = "help";
tSCC zMore_HelpText[] = "Extended usage information passed thru pager";
tSCC zMore_Help_Name[] = "more-help";
+tSCC zVersionText[] = "Output version information and exit";
+tSCC zVersion_Name[] = "version";
+
/*
* Save/Load_Opts option description:
*/
* if multiple copies are allowed.
*/
extern tOptProc
- optionNumericVal, optionPagedUsage;
+ optionNumericVal, optionPagedUsage, optionVersionStderr;
static tOptProc
doUsageOpt;
* When not under test, there are different procs to use
*/
extern tOptProc
- optionNumericVal, optionPagedUsage;
+ optionNumericVal, optionPagedUsage, optionPrintVersion;
static tOptProc
doUsageOpt;
#endif /* defined(TEST_SNTP_OPTS) */
+#ifdef TEST_SNTP_OPTS
+# define DOVERPROC optionVersionStderr
+#else
+# define DOVERPROC optionPrintVersion
+#endif /* TEST_SNTP_OPTS */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
/* desc, NAME, name */ zKeyfileText, zKeyfile_NAME, zKeyfile_Name,
/* disablement strs */ NULL, NULL },
+#ifdef NO_OPTIONAL_OPT_ARGS
+# define VERSION_OPT_FLAGS OPTST_IMM | OPTST_NO_INIT
+#else
+# define VERSION_OPT_FLAGS OPTST_SET_ARGTYPE(OPARG_TYPE_STRING) | \
+ OPTST_ARG_OPTIONAL | OPTST_IMM | OPTST_NO_INIT
+#endif
+
+ { /* entry idx, value */ INDEX_OPT_VERSION, VALUE_OPT_VERSION,
+ /* equiv idx value */ NO_EQUIVALENT, 0,
+ /* equivalenced to */ NO_EQUIVALENT,
+ /* min, max, act ct */ 0, 1, 0,
+ /* opt state flags */ VERSION_OPT_FLAGS, 0,
+ /* last opt argumnt */ { NULL },
+ /* arg list/cookie */ NULL,
+ /* must/cannot opts */ NULL, NULL,
+ /* option proc */ DOVERPROC,
+ /* desc, NAME, name */ zVersionText, NULL, zVersion_Name,
+ /* disablement strs */ NULL, NULL },
+
+#undef VERSION_OPT_FLAGS
+
+
{ /* entry idx, value */ INDEX_OPT_HELP, VALUE_OPT_HELP,
/* equiv idx value */ NO_EQUIVALENT, 0,
/* equivalenced to */ NO_EQUIVALENT,
*/
tSCC zPROGNAME[] = "SNTP";
tSCC zUsageTitle[] =
-"sntp - standard SNTP program\n\
+"sntp - standard SNTP program - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... ...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
job.\n\
NTP is the Network Time Protocol (RFC 1305) and SNTP is the\n\
Simple Network Time Protocol (RFC 2030, which supersedes RFC 1769).\n";
-#define zFullVersion NULL
+tSCC zFullVersion[] = SNTP_FULL_VERSION;
/* extracted from /usr/local/gnu/share/autogen/optcode.tpl near line 408 */
#if defined(ENABLE_NLS)
NO_EQUIVALENT /* index of '-#' option */,
NO_EQUIVALENT /* index of default opt */
},
- 16 /* full option count */, 12 /* user option count */
+ 17 /* full option count */, 12 /* user option count */
};
/*
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.h)
*
- * It has been AutoGen-ed Monday November 17, 2008 at 03:26:32 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:50:44 AM EST
* From the definitions sntp-opts.def
* and the template file options
*
INDEX_OPT_TIMEOUT = 9,
INDEX_OPT_AUTHENTICATION = 10,
INDEX_OPT_KEYFILE = 11,
- INDEX_OPT_HELP = 12,
- INDEX_OPT_MORE_HELP = 13,
- INDEX_OPT_SAVE_OPTS = 14,
- INDEX_OPT_LOAD_OPTS = 15
+ INDEX_OPT_VERSION = 12,
+ INDEX_OPT_HELP = 13,
+ INDEX_OPT_MORE_HELP = 14,
+ INDEX_OPT_SAVE_OPTS = 15,
+ INDEX_OPT_LOAD_OPTS = 16
} teOptIndex;
-#define OPTION_CT 16
+#define OPTION_CT 17
+#define SNTP_VERSION "4.2.5p143"
+#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
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
+# warning undefining IPV4 due to option name conflict
+# undef IPV4
+# endif
+# ifdef IPV6
+# warning undefining IPV6 due to option name conflict
+# undef IPV6
+# endif
+# ifdef NORMALVERBOSE
+# warning undefining NORMALVERBOSE due to option name conflict
+# undef NORMALVERBOSE
+# endif
+# ifdef KOD
+# warning undefining KOD due to option name conflict
+# undef KOD
+# endif
+# ifdef SYSLOG
+# warning undefining SYSLOG due to option name conflict
+# undef SYSLOG
+# endif
+# ifdef FILELOG
+# warning undefining FILELOG due to option name conflict
+# undef FILELOG
+# endif
+# ifdef SETTOD
+# warning undefining SETTOD due to option name conflict
+# undef SETTOD
+# endif
+# ifdef ADJTIME
+# warning undefining ADJTIME due to option name conflict
+# undef ADJTIME
+# endif
+# ifdef BROADCAST
+# warning undefining BROADCAST due to option name conflict
+# undef BROADCAST
+# endif
+# ifdef TIMEOUT
+# warning undefining TIMEOUT due to option name conflict
+# undef TIMEOUT
+# endif
+# ifdef AUTHENTICATION
+# warning undefining AUTHENTICATION due to option name conflict
+# undef AUTHENTICATION
+# endif
+# ifdef KEYFILE
+# warning undefining KEYFILE due to option name conflict
+# undef KEYFILE
+# endif
+#else /* NO_OPTION_NAME_WARNINGS */
+# undef IPV4
+# undef IPV6
+# undef NORMALVERBOSE
+# undef KOD
+# undef SYSLOG
+# undef FILELOG
+# undef SETTOD
+# undef ADJTIME
+# undef BROADCAST
+# undef TIMEOUT
+# undef AUTHENTICATION
+# undef KEYFILE
+#endif /* NO_OPTION_NAME_WARNINGS */
+
/*
* Interface defines for specific options.
*/
#define OPT_VALUE_AUTHENTICATION (DESC(AUTHENTICATION).optArg.argInt)
#define VALUE_OPT_KEYFILE 'k'
+#define VALUE_OPT_VERSION 'v'
#define VALUE_OPT_HELP '?'
#define VALUE_OPT_MORE_HELP '!'
#define VALUE_OPT_SAVE_OPTS '>'
#
# EDIT THIS FILE WITH CAUTION (sntp-opts.texi)
#
-# It has been AutoGen-ed Monday November 17, 2008 at 03:26:34 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:50:47 AM EST
# From the definitions sntp-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH SNTP 1 2008-11-17 "" "Programmer's Manual"
+.TH SNTP 1 2008-11-17 "( 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (sntp.1)
.\"
-.\" It has been AutoGen-ed Monday November 17, 2008 at 03:26:33 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:50:46 AM EST
.\" From the definitions sntp-opts.def
.\" and the template file agman1.tpl
.\"
The \fIno-load-opts\fP form will disable the loading
of earlier RC/INI files. \fI--no-load-opts\fP is handled early,
out of order.
+.TP
+.BR \-v " [{\fIv|c|n\fP}]," " \--version" "[=\fI{v|c|n}\fP]"
+Output version of program and exit. The default mode is `v', a simple
+version. The `c' mode will print copyright information and `n' will
+print the full copyright notice.
.SH OPTION PRESETS
Any option that is not marked as \fInot presettable\fP may be preset
by loading values from configuration ("RC" or ".INI") file(s) and values from
/*
* EDIT THIS FILE WITH CAUTION (ntpd-opts.c)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:47:54 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:37:42 AM EST
* From the definitions ntpd-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPD";
tSCC zUsageTitle[] =
-"ntpd - NTP daemon program - Ver. 4.2.5p142\n\
+"ntpd - NTP daemon program - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
#define zRcName NULL
#define apzHomeList NULL
/*
* EDIT THIS FILE WITH CAUTION (ntpd-opts.h)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:47:53 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:37:41 AM EST
* From the definitions ntpd-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 32
-#define NTPD_VERSION "4.2.5p142"
-#define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.5p142"
+#define NTPD_VERSION "4.2.5p143"
+#define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpd-opts.texi)
#
-# It has been AutoGen-ed Sunday November 16, 2008 at 06:47:57 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:37:45 AM EST
# From the definitions ntpd-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH NTPD 1 2008-11-16 "( 4.2.5p142)" "Programmer's Manual"
+.TH NTPD 1 2008-11-17 "( 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpd.1)
.\"
-.\" It has been AutoGen-ed Sunday November 16, 2008 at 06:47:55 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:37:43 AM EST
.\" From the definitions ntpd-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntpdc-opts.c)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:54:46 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:44:34 AM EST
* From the definitions ntpdc-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPDC";
tSCC zUsageTitle[] =
-"ntpdc - vendor-specific NTP query program - Ver. 4.2.5p142\n\
+"ntpdc - vendor-specific NTP query program - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntpdc-opts.h)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:54:45 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:44:34 AM EST
* From the definitions ntpdc-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 15
-#define NTPDC_VERSION "4.2.5p142"
-#define NTPDC_FULL_VERSION "ntpdc - vendor-specific NTP query program - Ver. 4.2.5p142"
+#define NTPDC_VERSION "4.2.5p143"
+#define NTPDC_FULL_VERSION "ntpdc - vendor-specific NTP query program - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpdc-opts.texi)
#
-# It has been AutoGen-ed Sunday November 16, 2008 at 06:54:47 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:44:36 AM EST
# From the definitions ntpdc-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH NTPDC 1 2008-11-16 "( 4.2.5p142)" "Programmer's Manual"
+.TH NTPDC 1 2008-11-17 "( 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpdc.1)
.\"
-.\" It has been AutoGen-ed Sunday November 16, 2008 at 06:54:47 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:44:35 AM EST
.\" From the definitions ntpdc-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntpq-opts.c)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:55:16 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:45:04 AM EST
* From the definitions ntpq-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPQ";
tSCC zUsageTitle[] =
-"ntpq - standard NTP query program - Ver. 4.2.5p142\n\
+"ntpq - standard NTP query program - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntpq-opts.h)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:55:16 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:45:04 AM EST
* From the definitions ntpq-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 13
-#define NTPQ_VERSION "4.2.5p142"
-#define NTPQ_FULL_VERSION "ntpq - standard NTP query program - Ver. 4.2.5p142"
+#define NTPQ_VERSION "4.2.5p143"
+#define NTPQ_FULL_VERSION "ntpq - standard NTP query program - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpq-opts.texi)
#
-# It has been AutoGen-ed Sunday November 16, 2008 at 06:55:19 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:45:06 AM EST
# From the definitions ntpq-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH NTPQ 1 2008-11-16 "( 4.2.5p142)" "Programmer's Manual"
+.TH NTPQ 1 2008-11-17 "( 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpq.1)
.\"
-.\" It has been AutoGen-ed Sunday November 16, 2008 at 06:55:18 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:45:05 AM EST
.\" From the definitions ntpq-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.c)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:56:01 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:45:49 AM EST
* From the definitions ntpsnmpd-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPSNMPD";
tSCC zUsageTitle[] =
-"ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p142\n\
+"ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> | --<name> ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.h)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 06:56:01 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:45:49 AM EST
* From the definitions ntpsnmpd-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 7
-#define NTPSNMPD_VERSION "4.2.5p142"
-#define NTPSNMPD_FULL_VERSION "ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p142"
+#define NTPSNMPD_VERSION "4.2.5p143"
+#define NTPSNMPD_FULL_VERSION "ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.texi)
#
-# It has been AutoGen-ed Sunday November 16, 2008 at 06:56:03 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:45:51 AM EST
# From the definitions ntpsnmpd-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH NTPSNMPD 1 2008-11-16 "( 4.2.5p142)" "Programmer's Manual"
+.TH NTPSNMPD 1 2008-11-17 "( 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpsnmpd.1)
.\"
-.\" It has been AutoGen-ed Sunday November 16, 2008 at 06:56:02 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:45:50 AM EST
.\" From the definitions ntpsnmpd-opts.def
.\" and the template file agman1.tpl
.\"
# - Numeric values increment
# - empty 'increments' to 1
# - NEW 'increments' to empty
-point=142
+point=143
# Special. Normally unused. A suffix.
#special=ag
special=
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.c)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 07:02:12 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:51:57 AM EST
* From the definitions sntp-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "SNTP";
tSCC zUsageTitle[] =
-"sntp - standard SNTP program - Ver. 4.2.5p142\n\
+"sntp - standard SNTP program - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> | --<name> ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.h)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 07:02:11 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:51:56 AM EST
* From the definitions sntp-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 13
-#define SNTP_VERSION "4.2.5p142"
-#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p142"
+#define SNTP_VERSION "4.2.5p143"
+#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (sntp-opts.texi)
#
-# It has been AutoGen-ed Sunday November 16, 2008 at 07:02:14 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:51:59 AM EST
# From the definitions sntp-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH SNTP 1 2008-11-16 "( 4.2.5p142)" "Programmer's Manual"
+.TH SNTP 1 2008-11-17 "( 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (sntp.1)
.\"
-.\" It has been AutoGen-ed Sunday November 16, 2008 at 07:02:13 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:51:58 AM EST
.\" From the definitions sntp-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntp-keygen-opts.c)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 07:02:22 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:52:07 AM EST
* From the definitions ntp-keygen-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTP_KEYGEN";
tSCC zUsageTitle[] =
-"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p142\n\
+"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p143\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntp-keygen-opts.h)
*
- * It has been AutoGen-ed Sunday November 16, 2008 at 07:02:21 AM EST
+ * It has been AutoGen-ed Monday November 17, 2008 at 06:52:06 AM EST
* From the definitions ntp-keygen-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 23
-#define NTP_KEYGEN_VERSION "4.2.5p142"
-#define NTP_KEYGEN_FULL_VERSION "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p142"
+#define NTP_KEYGEN_VERSION "4.2.5p143"
+#define NTP_KEYGEN_FULL_VERSION "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p143"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntp-keygen-opts.texi)
#
-# It has been AutoGen-ed Sunday November 16, 2008 at 07:02:24 AM EST
+# It has been AutoGen-ed Monday November 17, 2008 at 06:52:09 AM EST
# From the definitions ntp-keygen-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH NTP-KEYGEN 1 2008-11-16 "(ntp 4.2.5p142)" "Programmer's Manual"
+.TH NTP-KEYGEN 1 2008-11-17 "(ntp 4.2.5p143)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntp-keygen.1)
.\"
-.\" It has been AutoGen-ed Sunday November 16, 2008 at 07:02:23 AM EST
+.\" It has been AutoGen-ed Monday November 17, 2008 at 06:52:08 AM EST
.\" From the definitions ntp-keygen-opts.def
.\" and the template file agman1.tpl
.\"