Changeset 203 for trunk/openjdk/jdk/src/windows/classes
- Timestamp:
- Dec 8, 2010, 10:53:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/windows/classes/sun/security/mscapi/SunMSCAPI.java
r2 r203 51 51 AccessController.doPrivileged(new PrivilegedAction() { 52 52 public Object run() { 53 System.loadLibrary("sunmscapi"); 53 if (System.getProperty("os.name").startsWith("OS/2")) { 54 System.loadLibrary("smscapi"); 55 } else { 56 System.loadLibrary("sunmscapi"); 57 } 54 58 return null; 55 59 }
Note:
See TracChangeset
for help on using the changeset viewer.