You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2013/02/14 00:11:53 UTC

svn commit: r1445974 - in /tomcat/native/branches/1.1.x: ./ native/build/lineends.pl native/build/tcnative.m4 native/configure.in native/os/unix/system.c native/src/network.c native/src/sslutils.c

Author: rjung
Date: Wed Feb 13 23:11:53 2013
New Revision: 1445974

URL: http://svn.apache.org/r1445974
Log:
Fix typos in comments and output messages.
PR 54558
Submitted by ville dot skytta at iki dot fi.

Backport of r1445972 from trunk plus two more
typo fixes.

Modified:
    tomcat/native/branches/1.1.x/   (props changed)
    tomcat/native/branches/1.1.x/native/build/lineends.pl
    tomcat/native/branches/1.1.x/native/build/tcnative.m4
    tomcat/native/branches/1.1.x/native/configure.in
    tomcat/native/branches/1.1.x/native/os/unix/system.c
    tomcat/native/branches/1.1.x/native/src/network.c
    tomcat/native/branches/1.1.x/native/src/sslutils.c

Propchange: tomcat/native/branches/1.1.x/
------------------------------------------------------------------------------
  Merged /tomcat/native/trunk:r1445972

Modified: tomcat/native/branches/1.1.x/native/build/lineends.pl
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/build/lineends.pl?rev=1445974&r1=1445973&r2=1445974&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/build/lineends.pl (original)
+++ tomcat/native/branches/1.1.x/native/build/lineends.pl Wed Feb 13 23:11:53 2013
@@ -31,7 +31,7 @@
 use IO::File;
 use File::Find;
 
-# The ignore list is '-' seperated, with this leading hyphen and
+# The ignore list is '-' separated, with this leading hyphen and
 # trailing hyphens in ever concatinated list below.
 $ignore = "-";
 

Modified: tomcat/native/branches/1.1.x/native/build/tcnative.m4
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/build/tcnative.m4?rev=1445974&r1=1445973&r2=1445974&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/build/tcnative.m4 (original)
+++ tomcat/native/branches/1.1.x/native/build/tcnative.m4 Wed Feb 13 23:11:53 2013
@@ -96,7 +96,7 @@ AC_DEFUN(
     ],
     [
       # This works if the parameter was NOT specified, so it's a good time
-      # to see what the enviroment says.
+      # to see what the environment says.
       # Since Sun uses JAVA_HOME a lot, we check it first and ignore the
       # JAVA_HOME, otherwise just use whatever JAVA_HOME was specified.
 

Modified: tomcat/native/branches/1.1.x/native/configure.in
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/configure.in?rev=1445974&r1=1445973&r2=1445974&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/configure.in (original)
+++ tomcat/native/branches/1.1.x/native/configure.in Wed Feb 13 23:11:53 2013
@@ -267,7 +267,7 @@ if test -d $srcdir/test; then
 fi
 
 dnl
-dnl everthing is done.
+dnl everything is done.
 MAKEFILES="Makefile"
 AC_OUTPUT([
     tcnative.pc

Modified: tomcat/native/branches/1.1.x/native/os/unix/system.c
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/os/unix/system.c?rev=1445974&r1=1445973&r2=1445974&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/os/unix/system.c (original)
+++ tomcat/native/branches/1.1.x/native/os/unix/system.c Wed Feb 13 23:11:53 2013
@@ -147,7 +147,7 @@ TCN_IMPLEMENT_CALL(jint, OS, info)(TCN_S
             if (sys_clk_tck >= 0) {
                 /* Get total CPU times from /proc/stat */
                 /* Example for the first line: cpu  2095497 8176 3280198 908667841 1543576 28867 375399 0 0 */
-                /* Accoring to the man pages, the numbers are given in units of USER_HZ:
+                /* According to the man pages, the numbers are given in units of USER_HZ:
                  * user mode, user mode with low priority (nice), system mode, and the idle task.
                  * Additional values can be ignored. */
                 fd = open("/proc/stat", O_RDONLY);

Modified: tomcat/native/branches/1.1.x/native/src/network.c
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/src/network.c?rev=1445974&r1=1445973&r2=1445974&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/src/network.c (original)
+++ tomcat/native/branches/1.1.x/native/src/network.c Wed Feb 13 23:11:53 2013
@@ -69,8 +69,8 @@ void sp_network_dump_statistics()
     fprintf(stderr, "Last receive error      : %d\n", sp_erl_recv);
 
     fprintf(stderr, "Total sendfile calls    : %d\n", sf_num_send);
-    fprintf(stderr, "Minimum sendfile lenght : %" APR_SIZE_T_FMT "\n", sf_min_send);
-    fprintf(stderr, "Maximum sendfile lenght : %" APR_SIZE_T_FMT "\n", sf_max_send);
+    fprintf(stderr, "Minimum sendfile length : %" APR_SIZE_T_FMT "\n", sf_min_send);
+    fprintf(stderr, "Maximum sendfile length : %" APR_SIZE_T_FMT "\n", sf_max_send);
 
 }
 

Modified: tomcat/native/branches/1.1.x/native/src/sslutils.c
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/src/sslutils.c?rev=1445974&r1=1445973&r2=1445974&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/src/sslutils.c (original)
+++ tomcat/native/branches/1.1.x/native/src/sslutils.c Wed Feb 13 23:11:53 2013
@@ -826,7 +826,7 @@ static int parse_ASN1_OID(unsigned char 
    the end of the ASN1 sequence (marked by '\0'), so if there are other sequences within
    the same sequence the while loop parses the sequences */
 
-/* This algo was developped with AIA in mind so it was tested only with this extension */
+/* This algo was developed with AIA in mind so it was tested only with this extension */
 static int parse_ASN1_Sequence(unsigned char *asn1, char ***ocsp_urls,
                                int *nocsp_urls, apr_pool_t *p)
 {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org