costin      01/08/25 18:55:21

  Modified:    src/share/org/apache/tomcat/modules/server
                        JNIConnectionHandler.java
  Log:
  Better message - we didn't find the library in LD_LIB_PATH, but that's not
  a 'failure', since we can try to look it up in the default location.
  
  Revision  Changes    Path
  1.13      +2 -1      
jakarta-tomcat/src/share/org/apache/tomcat/modules/server/JNIConnectionHandler.java
  
  Index: JNIConnectionHandler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/JNIConnectionHandler.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- JNIConnectionHandler.java 2001/08/24 01:15:18     1.12
  +++ JNIConnectionHandler.java 2001/08/26 01:55:21     1.13
  @@ -219,7 +219,8 @@
                                   " was loaded from the lib path");
                return;
            } catch(UnsatisfiedLinkError usl) {
  -             System.err.println("Failed to loadLibrary() " + lib);
  +             System.err.println("loadLibrary(" + lib +
  +                                ") didn't find the library, try with full path");
                if( debug > 0 )
                    usl.printStackTrace();
            }
  
  
  

Reply via email to