--- old/src/solaris/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java Wed Apr 25 15:21:59 2012 +++ new/src/solaris/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java Wed Apr 25 15:21:59 2012 @@ -428,7 +428,12 @@ static { Util.load(); // loads nio & net native libraries java.security.AccessController.doPrivileged( - new sun.security.action.LoadLibraryAction("sctp")); + new java.security.PrivilegedAction() { + public Void run() { + System.loadLibrary("sctp"); + return null; + } + }); initIDs(); } }