Author: pero Date: Fri Mar 17 04:34:53 2006 New Revision: 386627 URL: http://svn.apache.org/viewcvs?rev=386627&view=rev Log: Fix small type usage typo!
Modified: tomcat/connectors/trunk/jk/native/common/jk_shm.c Modified: tomcat/connectors/trunk/jk/native/common/jk_shm.c URL: http://svn.apache.org/viewcvs/tomcat/connectors/trunk/jk/native/common/jk_shm.c?rev=386627&r1=386626&r2=386627&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/native/common/jk_shm.c (original) +++ tomcat/connectors/trunk/jk/native/common/jk_shm.c Fri Mar 17 04:34:53 2006 @@ -364,9 +364,9 @@ { int rc; if (jk_shmem.hdr) { - if (jk_shmem.hdr.attached) { + if (jk_shmem.attached) { int p = (int)getpid(); - if (p != jk_shmem.hdr.attached) { + if (p != jk_shmem.attached) { /* In case this is a forked child * do not close the shared memory. * It will be closed by the parent. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]