On 12/23/2009 08:50 AM, Konstantin Kolinko wrote:
2009/12/21<mt...@apache.org>:
Author: mturk
Date: Mon Dec 21 12:39:29 2009
New Revision: 892800
URL: http://svn.apache.org/viewvc?rev=892800&view=rev
Log:
Fix #48305. Skip if property ends with .secret
Modified:
tomcat/jk/trunk/native/common/jk_status.c
tomcat/jk/trunk/xdocs/miscellaneous/changelog.xml
+ size_t nl = strlen(name);
+ if (nl> sizeof(".secret")&&
+ strcmp(name + nl - 7, ".secret") == 0) {
+ continue;
+ }
What is sizeof(".secret")? I suppose it is sizeof(char*) that is 4 or
8, and you are using an explicit '7' on the next line.
Right, should be 'sizeof(".secret") - 1'.
and sizeof("foo") is 4 -> strlen("foo") + 1 FYI :)
--
^TM
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org