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. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org