]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
[Backward Incompatible] sntp: -l/--filelog -> -l/--logfile, to be consistent with...
authorHarlan Stenn <stenn@ntp.org>
Thu, 4 Aug 2011 19:45:08 +0000 (15:45 -0400)
committerHarlan Stenn <stenn@ntp.org>
Thu, 4 Aug 2011 19:45:08 +0000 (15:45 -0400)
bk: 4e3af6c4zJTLpGqRVfWF88M3orfCIg

sntp/sntp-opts.c
sntp/sntp-opts.h
sntp/sntp-opts.texi
sntp/sntp.1
sntp/sntp.html

index 04ecad49a83819a5afc6b8381e3f3449227c02f5..ca22d60d391a257e7f8b42e879c51410ddf64a5a 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (sntp-opts.c)
  *  
- *  It has been AutoGen-ed  August  4, 2011 at 04:46:05 AM by AutoGen 5.12
+ *  It has been AutoGen-ed  August  4, 2011 at 03:43:18 PM by AutoGen 5.11.10pre10
  *  From the definitions    sntp-opts.def
  *  and the template file   options
  *
@@ -104,21 +104,21 @@ static char const zSyslog_NAME[]             = "SYSLOG";
 static char const zSyslog_Name[]             = "syslog";
 static const int
     aSyslogCantList[] = {
-    INDEX_OPT_FILELOG, NO_EQUIVALENT };
+    INDEX_OPT_LOGFILE, NO_EQUIVALENT };
 #define SYSLOG_FLAGS       (OPTST_DISABLED)
 
 /*
- *  Filelog option description with
+ *  Logfile option description with
  *  "Must also have options" and "Incompatible options":
  */
-static char const zFilelogText[] =
+static char const zLogfileText[] =
         "Log to specified logfile";
-static char const zFilelog_NAME[]            = "FILELOG";
-static char const zFilelog_Name[]            = "filelog";
+static char const zLogfile_NAME[]            = "LOGFILE";
+static char const zLogfile_Name[]            = "logfile";
 static const int
-    aFilelogCantList[] = {
+    aLogfileCantList[] = {
     INDEX_OPT_SYSLOG, NO_EQUIVALENT };
-#define FILELOG_FLAGS       (OPTST_DISABLED \
+#define LOGFILE_FLAGS       (OPTST_DISABLED \
         | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
 
 /*
@@ -312,16 +312,16 @@ static tOptDesc optDesc[OPTION_CT] = {
      /* desc, NAME, name */ zSyslogText, zSyslog_NAME, zSyslog_Name,
      /* disablement strs */ NULL, NULL },
 
-  {  /* entry idx, value */ 5, VALUE_OPT_FILELOG,
-     /* equiv idx, value */ 5, VALUE_OPT_FILELOG,
+  {  /* entry idx, value */ 5, VALUE_OPT_LOGFILE,
+     /* equiv idx, value */ 5, VALUE_OPT_LOGFILE,
      /* equivalenced to  */ NO_EQUIVALENT,
      /* min, max, act ct */ 0, 1, 0,
-     /* opt state flags  */ FILELOG_FLAGS, 0,
+     /* opt state flags  */ LOGFILE_FLAGS, 0,
      /* last opt argumnt */ { NULL },
      /* arg list/cookie  */ NULL,
-     /* must/cannot opts */ NULL, aFilelogCantList,
+     /* must/cannot opts */ NULL, aLogfileCantList,
      /* option proc      */ NULL,
-     /* desc, NAME, name */ zFilelogText, zFilelog_NAME, zFilelog_Name,
+     /* desc, NAME, name */ zLogfileText, zLogfile_NAME, zLogfile_Name,
      /* disablement strs */ NULL, NULL },
 
   {  /* entry idx, value */ 6, VALUE_OPT_SETTOD,
@@ -466,9 +466,10 @@ static tOptDesc optDesc[OPTION_CT] = {
  *  Define the Sntp Option Environment
  */
 static char const zPROGNAME[5] = "SNTP";
-static char const zUsageTitle[125] =
-"sntp - standard SNTP program - Ver. 4.2.6p4-RC2\n\
-USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... hostname-or-IP ...\n";
+static char const zUsageTitle[156] =
+"sntp - standard Simple Network Time Protocol program - Ver. 4.2.6p4-RC2\n\
+USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... \\\n\
+\t\t[ hostname-or-IP ...]\n";
 static char const zRcName[7] = ".ntprc";
 static char const * const apzHomeList[3] = {
     "$HOME",
@@ -482,8 +483,8 @@ sntp implements the Simple Network Time Protocol, and is used to query an\n\
 NTP or SNTP server and either display the time or set the local system's\n\
 time (given suitable privilege).\n\n\
 It can be run interactively from the command line or as a cron job.\n\n\
-NTP and SNTP are defined by RFC 5905, which obsoletes RFC 4330 and RFC\n\
-1305.\n";
+NTP and SNTP are defined by RFC 5905, which obsoletes RFC 4330 and\n\
+RFC 1305.\n";
 static char const zFullVersion[] = SNTP_FULL_VERSION;
 /* extracted from optcode.tlib near line 515 */
 
@@ -527,7 +528,6 @@ tOptions sntpOptions = {
     + OPTPROC_LONGOPT
     + OPTPROC_NO_REQ_OPT
     + OPTPROC_ENVIRON
-    + OPTPROC_ARGS_REQ
     + OPTPROC_MISUSE ),
     0, NULL,                    /* current option index, current option */
     NULL,         NULL,         zPROGNAME,
index 9f29eb0162089b33d8c527af934bd2133bc21e98..60109061a9eb93d85a1f9a025efcf8328b8f22e5 100644 (file)
@@ -1,7 +1,7 @@
 /*  
  *  EDIT THIS FILE WITH CAUTION  (sntp-opts.h)
  *  
- *  It has been AutoGen-ed  August  4, 2011 at 04:46:04 AM by AutoGen 5.12
+ *  It has been AutoGen-ed  August  4, 2011 at 03:43:18 PM by AutoGen 5.11.10pre10
  *  From the definitions    sntp-opts.def
  *  and the template file   options
  *
@@ -54,7 +54,7 @@ typedef enum {
     INDEX_OPT_NORMALVERBOSE   =  2,
     INDEX_OPT_KOD             =  3,
     INDEX_OPT_SYSLOG          =  4,
-    INDEX_OPT_FILELOG         =  5,
+    INDEX_OPT_LOGFILE         =  5,
     INDEX_OPT_SETTOD          =  6,
     INDEX_OPT_ADJTIME         =  7,
     INDEX_OPT_BROADCAST       =  8,
@@ -125,9 +125,9 @@ typedef enum {
 #  warning undefining SYSLOG due to option name conflict
 #  undef   SYSLOG
 # endif
-# ifdef    FILELOG
-#  warning undefining FILELOG due to option name conflict
-#  undef   FILELOG
+# ifdef    LOGFILE
+#  warning undefining LOGFILE due to option name conflict
+#  undef   LOGFILE
 # endif
 # ifdef    SETTOD
 #  warning undefining SETTOD due to option name conflict
@@ -159,7 +159,7 @@ typedef enum {
 # undef NORMALVERBOSE
 # undef KOD
 # undef SYSLOG
-# undef FILELOG
+# undef LOGFILE
 # undef SETTOD
 # undef ADJTIME
 # undef BROADCAST
@@ -177,7 +177,7 @@ typedef enum {
 #define VALUE_OPT_NORMALVERBOSE  'd'
 #define VALUE_OPT_KOD            'K'
 #define VALUE_OPT_SYSLOG         'p'
-#define VALUE_OPT_FILELOG        'l'
+#define VALUE_OPT_LOGFILE        'l'
 #define VALUE_OPT_SETTOD         's'
 #define VALUE_OPT_ADJTIME        'j'
 #define VALUE_OPT_BROADCAST      'b'
index 6ee1eab0496f3bced9e5ee0346d3d8d0db60135a..6e91e20b32994dd9f039f0431c93d0c061534e36 100644 (file)
@@ -1,12 +1,12 @@
 @node sntp Invocation
 @section Invoking sntp
 @pindex sntp
-@cindex standard SNTP program
+@cindex standard Simple Network Time Protocol program
 @ignore
 # 
 # EDIT THIS FILE WITH CAUTION  (sntp-opts.texi)
 # 
-# It has been AutoGen-ed  August  4, 2011 at 04:46:31 AM by AutoGen 5.12
+# It has been AutoGen-ed  August  4, 2011 at 03:43:21 PM by AutoGen 5.11.10pre10
 # From the definitions    sntp-opts.def
 # and the template file   aginfo.tpl
 @end ignore
@@ -50,11 +50,11 @@ This software is released under a specialized copyright license.
 * sntp adjtime::               adjtime option (-j)
 * sntp authentication::        authentication option (-a)
 * sntp broadcast::             broadcast option (-b)
-* sntp filelog::               filelog option (-l)
 * sntp ipv4::                  ipv4 option (-4)
 * sntp ipv6::                  ipv6 option (-6)
 * sntp keyfile::               keyfile option (-k)
 * sntp kod::                   kod option (-K)
+* sntp logfile::               logfile option (-l)
 * sntp normalverbose::         normalverbose option (-d)
 * sntp settod::                settod option (-s)
 * sntp syslog::                syslog option (-p)
@@ -69,8 +69,9 @@ This is the automatically generated usage text for sntp:
 
 @exampleindent 0
 @example
-sntp - standard SNTP program - Ver. 4.2.6p4-RC2
-USAGE:  sntp [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... hostname-or-IP ...
+sntp - standard Simple Network Time Protocol program - Ver. 4.2.6p4-RC2
+USAGE:  sntp [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... \
+                [ hostname-or-IP ...]
   Flg Arg Option-Name    Description
    -4 no  ipv4           Force IPv4 DNS name resolution
                                 - prohibits these options:
@@ -82,8 +83,8 @@ USAGE:  sntp [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... hostname-or-IP ...
    -K Str kod            KoD history filename
    -p no  syslog         Logging with syslog
                                 - prohibits these options:
-                                filelog
-   -l Str filelog        Log to specified logfile
+                                logfile
+   -l Str logfile        Log to specified logfile
                                 - prohibits these options:
                                 syslog
    -s no  settod         Set (step) the time with settimeofday()
@@ -120,8 +121,8 @@ time (given suitable privilege).
 
 It can be run interactively from the command line or as a cron job.
 
-NTP and SNTP are defined by RFC 5905, which obsoletes RFC 4330 and RFC
-1305.
+NTP and SNTP are defined by RFC 5905, which obsoletes RFC 4330 and
+RFC 1305.
 
 please send bug reports to:  http://bugs.ntp.org, bugs@@ntp.org
 @end example
@@ -160,22 +161,6 @@ If specified SNTP will listen to the specified broadcast address
 for NTP broadcasts.  The default maximum wait time,
 68 seconds, can be modified with -t.
 
-@node sntp filelog
-@subsection filelog option (-l)
-@cindex sntp-filelog
-
-This is the ``log to specified logfile'' option.
-
-This option has some usage constraints.  It:
-@itemize @bullet
-@item
-must not appear in combination with any of the following options:
-syslog.
-@end itemize
-
-This option causes the client to write log messages to the specified
-logfile.
-
 @node sntp ipv4
 @subsection ipv4 option (-4)
 @cindex sntp-ipv4
@@ -189,7 +174,7 @@ must not appear in combination with any of the following options:
 ipv6.
 @end itemize
 
-Force DNS resolution of following host names on the command line
+Force DNS resolution of the following host names on the command line
 to the IPv4 namespace.
 
 @node sntp ipv6
@@ -205,7 +190,7 @@ must not appear in combination with any of the following options:
 ipv4.
 @end itemize
 
-Force DNS resolution of following host names on the command line
+Force DNS resolution of the following host names on the command line
 to the IPv6 namespace.
 
 @node sntp keyfile
@@ -232,10 +217,26 @@ For more information see ntp.keys(5).
 @cindex sntp-kod
 
 This is the ``kod history filename'' option.
-Modifies the filename to be used to persist the history of KoD
+Specifies the filename to be used to persist the history of KoD
 responses received from servers.  The default is
 /var/db/ntp-kod.
 
+@node sntp logfile
+@subsection logfile option (-l)
+@cindex sntp-logfile
+
+This is the ``log to specified logfile'' option.
+
+This option has some usage constraints.  It:
+@itemize @bullet
+@item
+must not appear in combination with any of the following options:
+syslog.
+@end itemize
+
+This option causes the client to write log messages to the specified
+logfile.
+
 @node sntp normalverbose
 @subsection normalverbose option (-d)
 @cindex sntp-normalverbose
@@ -271,7 +272,7 @@ This option has some usage constraints.  It:
 @itemize @bullet
 @item
 must not appear in combination with any of the following options:
-filelog.
+logfile.
 @end itemize
 
 When this option is set all logging will be done using syslog.
index 9d0c9f42206e9f050937c30fb1d7f490c3c76e8e..5d94e077cdba9021b60c53456aa4064c0f438c98 100644 (file)
@@ -1,19 +1,19 @@
 .TH SNTP 1 2011-08-04 "( 4.2.6p4-RC2)" "Programmer's Manual"
 .\"  EDIT THIS FILE WITH CAUTION  (sntp.1)
 .\"  
-.\"  It has been AutoGen-ed  August  4, 2011 at 04:46:30 AM by AutoGen 5.12
+.\"  It has been AutoGen-ed  August  4, 2011 at 03:43:20 PM by AutoGen 5.11.10pre10
 .\"  From the definitions    sntp-opts.def
 .\"  and the template file   agman1.tpl
 .\"
 .SH NAME
-sntp \- standard SNTP program
+sntp \- standard Simple Network Time Protocol program
 .SH SYNOPSIS
 .B sntp
 .\" Mixture of short (flag) options and long options
 .RB [ \-\fIflag\fP " [\fIvalue\fP]]... [" \--\fIopt-name\fP " [[=| ]\fIvalue\fP]]..."
 .br
 .in +8
-hostname-or-IP ...
+[ hostname-or-IP ...]
 .PP
 
 .SH "DESCRIPTION"
@@ -52,7 +52,7 @@ Force IPv4 DNS name resolution.
 This option must not appear in combination with any of the following options:
 ipv6.
 .sp
-Force DNS resolution of following host names on the command line
+Force DNS resolution of the following host names on the command line
 to the IPv4 namespace.
 .TP
 .BR \-6 ", " \--ipv6
@@ -60,7 +60,7 @@ Force IPv6 DNS name resolution.
 This option must not appear in combination with any of the following options:
 ipv4.
 .sp
-Force DNS resolution of following host names on the command line
+Force DNS resolution of the following host names on the command line
 to the IPv6 namespace.
 .TP
 .BR \-d ", " \--normalverbose
@@ -74,18 +74,18 @@ suspected problem with the server, network or the source.
 .BR \-K " \fIfile-name\fP, " \--kod "=" \fIfile-name\fP
 KoD history filename.
 .sp
-Modifies the filename to be used to persist the history of KoD
+Specifies the filename to be used to persist the history of KoD
 responses received from servers.  The default is
 /var/db/ntp-kod.
 .TP
 .BR \-p ", " \--syslog
 Logging with syslog.
 This option must not appear in combination with any of the following options:
-filelog.
+logfile.
 .sp
 When this option is set all logging will be done using syslog.
 .TP
-.BR \-l " \fIfile-name\fP, " \--filelog "=" \fIfile-name\fP
+.BR \-l " \fIfile-name\fP, " \--logfile "=" \fIfile-name\fP
 Log to specified logfile.
 This option must not appear in combination with any of the following options:
 syslog.
index c09ff762c8f2e412d6c7d08d0455777b3af8e1eb..c27dfce8ca25e0b69c22ca4dac654d333897c6de 100644 (file)
@@ -3,7 +3,7 @@
 <title>Sntp User's Manual</title>
 <meta http-equiv="Content-Type" content="text/html">
 <meta name="description" content="Sntp User's Manual">
-<meta name="generator" content="makeinfo 4.7">
+<meta name="generator" content="makeinfo 4.13">
 <link title="Top" rel="top" href="#Top">
 <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
 <meta http-equiv="Content-Style-Type" content="text/css">
   pre.smallformat  { font-family:inherit; font-size:smaller }
   pre.smallexample { font-size:smaller }
   pre.smalllisp    { font-size:smaller }
-  span.sc { font-variant:small-caps }
-  span.roman { font-family: serif; font-weight: normal; } 
+  span.sc    { font-variant:small-caps }
+  span.roman { font-family:serif; font-weight:normal; } 
+  span.sansserif { font-family:sans-serif; font-weight:normal; } 
 --></style>
 </head>
 <body>
 <h1 class="settitle">Sntp User's Manual</h1>
 <div class="node">
+<a name="Top"></a>
 <p><hr>
-<a name="Top"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-Description">sntp Description</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-Description">sntp Description</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#dir">(dir)</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#dir">(dir)</a>
-<br>
+
 </div>
 
 <h2 class="unnumbered">Simple Network Time Protocol User Manual</h2>
@@ -55,9 +57,10 @@ IETF specification.
 </ul>
 
 <div class="node">
-<p><hr>
 <a name="sntp-Description"></a>
-<br>
+<p><hr>
+
+
 </div>
 
 <!-- node-name,  next,  previous,  up -->
@@ -72,14 +75,15 @@ standard output in the format:
 error bound of the system clock relative to the server clock.
 
 <div class="node">
-<p><hr>
 <a name="sntp-Invocation"></a>
-<br>
+<p><hr>
+
+
 </div>
 
 <h3 class="section">Invoking sntp</h3>
 
-<p><a name="index-sntp-1"></a><a name="index-standard-SNTP-program-2"></a>
+<p><a name="index-sntp-1"></a><a name="index-standard-Simple-Network-Time-Protocol-program-2"></a>
 <code>sntp</code>
 can be used as a SNTP client to query a NTP or SNTP server and either display
 the time or set the local system's time (given suitable privilege).  It can be
@@ -107,7 +111,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 <span class="command">sntp</span> usage text and option meanings.
+the aginfo template and the option descriptions for the <samp><span class="command">sntp</span></samp> program.  It documents the <samp><span class="command">sntp</span></samp> usage text and option meanings.
 
   <p>This software is released under a specialized copyright license.
 
@@ -116,11 +120,11 @@ the aginfo template and the option descriptions for the <span class="command">sn
 <li><a accesskey="2" href="#sntp-adjtime">sntp adjtime</a>:                adjtime option (-j)
 <li><a accesskey="3" href="#sntp-authentication">sntp authentication</a>:         authentication option (-a)
 <li><a accesskey="4" href="#sntp-broadcast">sntp broadcast</a>:              broadcast option (-b)
-<li><a accesskey="5" href="#sntp-filelog">sntp filelog</a>:                filelog option (-l)
-<li><a accesskey="6" href="#sntp-ipv4">sntp ipv4</a>:                   ipv4 option (-4)
-<li><a accesskey="7" href="#sntp-ipv6">sntp ipv6</a>:                   ipv6 option (-6)
-<li><a accesskey="8" href="#sntp-keyfile">sntp keyfile</a>:                keyfile option (-k)
-<li><a accesskey="9" href="#sntp-kod">sntp kod</a>:                    kod option (-K)
+<li><a accesskey="5" href="#sntp-ipv4">sntp ipv4</a>:                   ipv4 option (-4)
+<li><a accesskey="6" href="#sntp-ipv6">sntp ipv6</a>:                   ipv6 option (-6)
+<li><a accesskey="7" href="#sntp-keyfile">sntp keyfile</a>:                keyfile option (-k)
+<li><a accesskey="8" href="#sntp-kod">sntp kod</a>:                    kod option (-K)
+<li><a accesskey="9" href="#sntp-logfile">sntp logfile</a>:                logfile option (-l)
 <li><a href="#sntp-normalverbose">sntp normalverbose</a>:          normalverbose option (-d)
 <li><a href="#sntp-settod">sntp settod</a>:                 settod option (-s)
 <li><a href="#sntp-syslog">sntp syslog</a>:                 syslog option (-p)
@@ -128,10 +132,11 @@ the aginfo template and the option descriptions for the <span class="command">sn
 </ul>
 
 <div class="node">
+<a name="sntp-usage"></a>
 <p><hr>
-<a name="sntp-usage"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-adjtime">sntp adjtime</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-adjtime">sntp adjtime</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">sntp usage help (-?)</h4>
@@ -139,8 +144,9 @@ 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-RC2
-USAGE:  sntp [ -&lt;flag&gt; [&lt;val&gt;] | --&lt;name&gt;[{=| }&lt;val&gt;] ]... hostname-or-IP ...
+<pre class="example">sntp - standard Simple Network Time Protocol program - Ver. 4.2.6p4-RC2
+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
                                 - prohibits these options:
@@ -152,8 +158,8 @@ USAGE:  sntp [ -&lt;flag&gt; [&lt;val&gt;] | --&lt;name&gt;[{=| }&lt;val&gt;] ].
    -K Str kod            KoD history filename
    -p no  syslog         Logging with syslog
                                 - prohibits these options:
-                                filelog
-   -l Str filelog        Log to specified logfile
+                                logfile
+   -l Str logfile        Log to specified logfile
                                 - prohibits these options:
                                 syslog
    -s no  settod         Set (step) the time with settimeofday()
@@ -190,17 +196,18 @@ time (given suitable privilege).
 
 It can be run interactively from the command line or as a cron job.
 
-NTP and SNTP are defined by RFC 5905, which obsoletes RFC 4330 and RFC
-1305.
+NTP and SNTP are defined by RFC 5905, which obsoletes RFC 4330 and
+RFC 1305.
 
 please send bug reports to:  http://bugs.ntp.org, bugs@ntp.org
 </pre>
   <div class="node">
+<a name="sntp-adjtime"></a>
 <p><hr>
-<a name="sntp-adjtime"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-authentication">sntp authentication</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-authentication">sntp authentication</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-usage">sntp usage</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">adjtime option (-j)</h4>
@@ -215,11 +222,12 @@ settod.
 </ul>
 
 <div class="node">
+<a name="sntp-authentication"></a>
 <p><hr>
-<a name="sntp-authentication"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-broadcast">sntp broadcast</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-broadcast">sntp broadcast</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-adjtime">sntp adjtime</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">authentication option (-a)</h4>
@@ -231,11 +239,12 @@ The argument of this option is the keyid, a number specified in the keyfile as t
 key's identifier. See the keyfile option (-k) for more details.
 
 <div class="node">
+<a name="sntp-broadcast"></a>
 <p><hr>
-<a name="sntp-broadcast"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-filelog">sntp filelog</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-ipv4">sntp ipv4</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-authentication">sntp authentication</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">broadcast option (-b)</h4>
@@ -247,38 +256,17 @@ for NTP broadcasts.  The default maximum wait time,
 68 seconds, can be modified with -t.
 
 <div class="node">
+<a name="sntp-ipv4"></a>
 <p><hr>
-<a name="sntp-filelog"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-ipv4">sntp ipv4</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-ipv6">sntp ipv6</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-broadcast">sntp broadcast</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
-</div>
-
-<h4 class="subsection">filelog option (-l)</h4>
 
-<p><a name="index-sntp_002dfilelog-7"></a>
-This is the &ldquo;log to specified logfile&rdquo; option.
-
-  <p>This option has some usage constraints.  It:
-     <ul>
-<li>must not appear in combination with any of the following options:
-syslog. 
-</ul>
-
-  <p>This option causes the client to write log messages to the specified
-logfile.
-
-<div class="node">
-<p><hr>
-<a name="sntp-ipv4"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-ipv6">sntp ipv6</a>,
-Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-filelog">sntp filelog</a>,
-Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
 </div>
 
 <h4 class="subsection">ipv4 option (-4)</h4>
 
-<p><a name="index-sntp_002dipv4-8"></a>
+<p><a name="index-sntp_002dipv4-7"></a>
 This is the &ldquo;force ipv4 dns name resolution&rdquo; option.
 
   <p>This option has some usage constraints.  It:
@@ -287,20 +275,21 @@ This is the &ldquo;force ipv4 dns name resolution&rdquo; option.
 ipv6. 
 </ul>
 
-  <p>Force DNS resolution of following host names on the command line
+  <p>Force DNS resolution of the following host names on the command line
 to the IPv4 namespace.
 
 <div class="node">
+<a name="sntp-ipv6"></a>
 <p><hr>
-<a name="sntp-ipv6"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-keyfile">sntp keyfile</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-keyfile">sntp keyfile</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-ipv4">sntp ipv4</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">ipv6 option (-6)</h4>
 
-<p><a name="index-sntp_002dipv6-9"></a>
+<p><a name="index-sntp_002dipv6-8"></a>
 This is the &ldquo;force ipv6 dns name resolution&rdquo; option.
 
   <p>This option has some usage constraints.  It:
@@ -309,20 +298,21 @@ This is the &ldquo;force ipv6 dns name resolution&rdquo; option.
 ipv4. 
 </ul>
 
-  <p>Force DNS resolution of following host names on the command line
+  <p>Force DNS resolution of the following host names on the command line
 to the IPv6 namespace.
 
 <div class="node">
+<a name="sntp-keyfile"></a>
 <p><hr>
-<a name="sntp-keyfile"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-kod">sntp kod</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-kod">sntp kod</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-ipv6">sntp ipv6</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">keyfile option (-k)</h4>
 
-<p><a name="index-sntp_002dkeyfile-10"></a>
+<p><a name="index-sntp_002dkeyfile-9"></a>
 This is the &ldquo;specify a keyfile. sntp will look in this file for the key specified with -a&rdquo; option. 
 This option specifies the keyfile. SNTP will search for the key specified with -a keyno in this
 file. Key files follow the following format:
@@ -339,27 +329,52 @@ M  Key in a 1-to-8 character ASCII string using the MD5 authentication scheme.
   <p>For more information see ntp.keys(5).
 
 <div class="node">
+<a name="sntp-kod"></a>
 <p><hr>
-<a name="sntp-kod"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-normalverbose">sntp normalverbose</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-logfile">sntp logfile</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-keyfile">sntp keyfile</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">kod option (-K)</h4>
 
-<p><a name="index-sntp_002dkod-11"></a>
+<p><a name="index-sntp_002dkod-10"></a>
 This is the &ldquo;kod history filename&rdquo; option. 
-Modifies the filename to be used to persist the history of KoD
+Specifies the filename to be used to persist the history of KoD
 responses received from servers.  The default is
 /var/db/ntp-kod.
 
 <div class="node">
+<a name="sntp-logfile"></a>
 <p><hr>
-<a name="sntp-normalverbose"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-settod">sntp settod</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-normalverbose">sntp normalverbose</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-kod">sntp kod</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
+</div>
+
+<h4 class="subsection">logfile option (-l)</h4>
+
+<p><a name="index-sntp_002dlogfile-11"></a>
+This is the &ldquo;log to specified logfile&rdquo; option.
+
+  <p>This option has some usage constraints.  It:
+     <ul>
+<li>must not appear in combination with any of the following options:
+syslog. 
+</ul>
+
+  <p>This option causes the client to write log messages to the specified
+logfile.
+
+<div class="node">
+<a name="sntp-normalverbose"></a>
+<p><hr>
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-settod">sntp settod</a>,
+Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-logfile">sntp logfile</a>,
+Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
+
 </div>
 
 <h4 class="subsection">normalverbose option (-d)</h4>
@@ -372,11 +387,12 @@ produce a diagnostic.  This option should be set when there is a
 suspected problem with the server, network or the source.
 
 <div class="node">
+<a name="sntp-settod"></a>
 <p><hr>
-<a name="sntp-settod"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-syslog">sntp syslog</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-syslog">sntp syslog</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-normalverbose">sntp normalverbose</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">settod option (-s)</h4>
@@ -391,11 +407,12 @@ adjtime.
 </ul>
 
 <div class="node">
+<a name="sntp-syslog"></a>
 <p><hr>
-<a name="sntp-syslog"></a>Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-timeout">sntp timeout</a>,
+Next:&nbsp;<a rel="next" accesskey="n" href="#sntp-timeout">sntp timeout</a>,
 Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-settod">sntp settod</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">syslog option (-p)</h4>
@@ -406,16 +423,17 @@ This is the &ldquo;logging with syslog&rdquo; option.
   <p>This option has some usage constraints.  It:
      <ul>
 <li>must not appear in combination with any of the following options:
-filelog
+logfile
 </ul>
 
   <p>When this option is set all logging will be done using syslog.
 
 <div class="node">
+<a name="sntp-timeout"></a>
 <p><hr>
-<a name="sntp-timeout"></a>Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-syslog">sntp syslog</a>,
+Previous:&nbsp;<a rel="previous" accesskey="p" href="#sntp-syslog">sntp syslog</a>,
 Up:&nbsp;<a rel="up" accesskey="u" href="#sntp-Invocation">sntp Invocation</a>
-<br>
+
 </div>
 
 <h4 class="subsection">timeout option (-t)</h4>
@@ -426,9 +444,10 @@ When waiting for a broadcast packet SNTP will wait the number
 of seconds specified before giving up.  Default 68 seconds.
 
 <div class="node">
-<p><hr>
 <a name="Usage"></a>
-<br>
+<p><hr>
+
+
 </div>
 
 <!-- node-name,  next,  previous,  up -->