INN commit: branches/2.5 (8 files)

INN Commit rra at isc.org
Sun Jan 17 12:37:25 UTC 2010


    Date: Sunday, January 17, 2010 @ 04:37:25
  Author: iulius
Revision: 8892

Typos.

Use ":" with chown, and not ".", as separator for group name.

Modified:
  branches/2.5/doc/pod/checklist.pod
  branches/2.5/doc/pod/inn.conf.pod
  branches/2.5/doc/pod/newsfeeds.pod
  branches/2.5/doc/pod/tdx-util.pod
  branches/2.5/innd/README
  branches/2.5/innd/nc.c
  branches/2.5/nnrpd/commands.c
  branches/2.5/storage/buffindexed/buffindexed.c

-----------------------------------+
 doc/pod/checklist.pod             |    2 +-
 doc/pod/inn.conf.pod              |    3 ++-
 doc/pod/newsfeeds.pod             |    4 ++--
 doc/pod/tdx-util.pod              |    4 ++--
 innd/README                       |    2 +-
 innd/nc.c                         |    4 ++--
 nnrpd/commands.c                  |    2 +-
 storage/buffindexed/buffindexed.c |    2 +-
 8 files changed, 12 insertions(+), 11 deletions(-)

Modified: doc/pod/checklist.pod
===================================================================
--- doc/pod/checklist.pod	2010-01-17 12:32:49 UTC (rev 8891)
+++ doc/pod/checklist.pod	2010-01-17 12:37:25 UTC (rev 8892)
@@ -33,7 +33,7 @@
 are owned by C<news>, group C<news>.
 
 You want to be careful that things in that directory stay owned by
-C<news> S<-- but> you can't just C<chown -R news.news> after the install,
+C<news> S<-- but> you can't just C<chown -R news:news> after the install,
 because you may have binaries that are SUID root.  You can do the build
 as any user, but you need to be root when doing C<make install> so as
 to set the permissions correctly.  After that point, though, you may

Modified: doc/pod/inn.conf.pod
===================================================================
--- doc/pod/inn.conf.pod	2010-01-17 12:32:49 UTC (rev 8891)
+++ doc/pod/inn.conf.pod	2010-01-17 12:37:25 UTC (rev 8892)
@@ -1009,7 +1009,8 @@
 
 The path to a file containing certificate authority root certificates,
 used to present a trust chain to a TLS client.  This parameter is only
-used if B<nnrpd> is built with TLS/SSL support.  There is no default value.
+used if B<nnrpd> is built with TLS/SSL support.  The default value is an
+empty string.
 
 =item I<tlscapath>
 

Modified: doc/pod/newsfeeds.pod
===================================================================
--- doc/pod/newsfeeds.pod	2010-01-17 12:32:49 UTC (rev 8891)
+++ doc/pod/newsfeeds.pod	2010-01-17 12:37:25 UTC (rev 8892)
@@ -108,7 +108,7 @@
 groups in the comp.sources.* hierarchy, but note that this would also
 exclude a newsgroup named comp.sources-only (whereas the above pattern
 would add that group to the site subscription list since it matches
-C<comp.*> and none of the other patterns.
+C<comp.*> and none of the other patterns).
 
 For another example, to feed alt.* and misc.* to a given site but not any
 articles posted to alt.binaries.warez (even if they're also crossposted to
@@ -116,7 +116,7 @@
 
     alt.*, at alt.binaries.warez,misc.*
 
-Note, however, that if you reversed the C<alt.*> and <@alt.binaries.warez>
+Note, however, that if you reversed the C<alt.*> and C<@alt.binaries.warez>
 entries, this pattern would be equivalent to C<alt.*,misc.*>, since the
 last matching pattern determines whether a given newsgroup matches and the
 poison logic only applies if the poison entry is the last matching entry.

Modified: doc/pod/tdx-util.pod
===================================================================
--- doc/pod/tdx-util.pod	2010-01-17 12:32:49 UTC (rev 8891)
+++ doc/pod/tdx-util.pod	2010-01-17 12:37:25 UTC (rev 8892)
@@ -62,7 +62,7 @@
 Audit the entire overview database for problems.  This runs the internal
 consistency checks built into the tradindexed overview implementation,
 checking such things as the validity and reachability of all group index
-entries, the format of the individual overview entries, the correspondance
+entries, the format of the individual overview entries, the correspondence
 of index entries to overview data, and similar such things.  No changes
 will be made to the database, but problems will be reported to standard
 error.
@@ -94,7 +94,7 @@
 detected where possible. This runs the internal consistency checks built
 into the tradindexed overview implementation, checking such things as the
 validity and reachability of all group index entries, the format of the
-individual overview entries, the correspondance of index entries to
+individual overview entries, the correspondence of index entries to
 overview data, and similar such things.  The strategy used when fixing
 problems is to throw away data that's unrecoverable, so be warned that
 using this option may result in inaccessible articles if their overview

Modified: innd/README
===================================================================
--- innd/README	2010-01-17 12:32:49 UTC (rev 8891)
+++ innd/README	2010-01-17 12:37:25 UTC (rev 8892)
@@ -54,7 +54,7 @@
 
     CHANreadloop is the main processing loop of innd.  As long as innd is
     running, it will be inside that function.  The core channel code
-    maintains a table of channels, which have a one-to-one correspondance
+    maintains a table of channels, which have a one-to-one correspondence
     with open file descriptors, and three file descriptor sets.  Each
     channel is generally in one of the three sets (reading, writing, or
     sleeping) at any given time.  The states should generally be

Modified: innd/nc.c
===================================================================
--- innd/nc.c	2010-01-17 12:32:49 UTC (rev 8891)
+++ innd/nc.c	2010-01-17 12:37:25 UTC (rev 8892)
@@ -1089,7 +1089,7 @@
 	  movedata = false;
 	} else {
 	  cp->Next = bp->used;
-	  /* Move data to the begining anyway. */
+	  /* Move data to the beginning anyway. */
 	  movedata = true;
 	}
 	readmore = true;
@@ -1464,7 +1464,7 @@
 	  (unsigned long) bp->used, cp->XBatchSize);
 
       if (cp->Next != 0) {
-	/* data must start from the begining of the buffer */
+	/* data must start from the beginning of the buffer */
         movedata = true;
 	readmore = false;
 	break;

Modified: nnrpd/commands.c
===================================================================
--- nnrpd/commands.c	2010-01-17 12:32:49 UTC (rev 8891)
+++ nnrpd/commands.c	2010-01-17 12:37:25 UTC (rev 8892)
@@ -635,7 +635,7 @@
       /* Acquire lock (this could be in RateLimit but that would
        * invoke the spaghetti factor). 
        */
-      if ((path = (char *) PostRecFilename(Client.ip,PERMuser)) == NULL) {
+      if ((path = (char *) PostRecFilename(Client.ip, PERMuser)) == NULL) {
         Reply("%d %s\r\n", ihave ? NNTP_FAIL_IHAVE_DEFER : NNTP_FAIL_POST_AUTH,
               ihave ? "Retry later" : "Posting not allowed");
         return;

Modified: storage/buffindexed/buffindexed.c
===================================================================
--- storage/buffindexed/buffindexed.c	2010-01-17 12:32:49 UTC (rev 8891)
+++ storage/buffindexed/buffindexed.c	2010-01-17 12:37:25 UTC (rev 8892)
@@ -768,7 +768,7 @@
 
   table = ((ULONG *) ovbuff->bitfield + (OV_BEFOREBITF / sizeof(long)));
 
-  /* For tighter placement look for unused block from the begining on
+  /* For tighter placement look for unused block from the beginning on
    * every run. */
   for (i = 0 ; i < last ; i++) {
     if ((table[i] ^ ~0) != 0)




More information about the inn-committers mailing list