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 2006/09/03 20:13:55 UTC

svn commit: r439816 - in /tomcat/connectors/trunk/jk/native/common: jk_map.c jk_util.c jk_util.h

Author: rjung
Date: Sun Sep  3 11:13:54 2006
New Revision: 439816

URL: http://svn.apache.org/viewvc?view=rev&rev=439816
Log:
Fix old typo.

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_map.c
    tomcat/connectors/trunk/jk/native/common/jk_util.c
    tomcat/connectors/trunk/jk/native/common/jk_util.h

Modified: tomcat/connectors/trunk/jk/native/common/jk_map.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_map.c?view=diff&rev=439816&r1=439815&r2=439816
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_map.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_map.c Sun Sep  3 11:13:54 2006
@@ -386,9 +386,9 @@
                                        strlen(v) + strlen(oldv) + 3);
                     if (tmpv) {
                         char sep = '*';
-                        if (jk_is_path_poperty(prp))
+                        if (jk_is_path_property(prp))
                             sep = PATH_SEPERATOR;
-                        else if (jk_is_cmd_line_poperty(prp))
+                        else if (jk_is_cmd_line_property(prp))
                             sep = ' ';
                         else if (!strcasecmp(prp, "worker.list"))
                             sep = ',';

Modified: tomcat/connectors/trunk/jk/native/common/jk_util.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_util.c?view=diff&rev=439816&r1=439815&r2=439816
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_util.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_util.c Sun Sep  3 11:13:54 2006
@@ -1133,12 +1133,12 @@
     return JK_FALSE;
 }
 
-int jk_is_path_poperty(const char *prp_name)
+int jk_is_path_property(const char *prp_name)
 {
     return jk_is_some_property(prp_name, "path");
 }
 
-int jk_is_cmd_line_poperty(const char *prp_name)
+int jk_is_cmd_line_property(const char *prp_name)
 {
     return jk_is_some_property(prp_name, CMD_LINE_OF_WORKER);
 }

Modified: tomcat/connectors/trunk/jk/native/common/jk_util.h
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_util.h?view=diff&rev=439816&r1=439815&r2=439816
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_util.h (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_util.h Sun Sep  3 11:13:54 2006
@@ -139,9 +139,9 @@
 
 int jk_file_exists(const char *f);
 
-int jk_is_path_poperty(const char *prp_name);
+int jk_is_path_property(const char *prp_name);
 
-int jk_is_cmd_line_poperty(const char *prp_name);
+int jk_is_cmd_line_property(const char *prp_name);
 
 int jk_is_unique_property(const char *prp_name);
 



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