1 --- a/a/nss/lib/freebl/loader.c
2 +++ a/a/nss/lib/freebl/loader.c
7 +extern FREEBLGetVectorFn FREEBL_GetVector;
8 /* This function must be run only once. */
9 /* determine if hybrid platform, then actually load the DSO. */
15 - handle = loader_LoadLibrary(name);
17 - PRFuncPtr address = PR_FindFunctionSymbol(handle, "FREEBL_GetVector");
20 + PRFuncPtr address = FREEBL_GetVector;
23 FREEBLGetVectorFn * getVector = (FREEBLGetVectorFn *)address;
29 /* This function is not thread-safe, but doesn't need to be, because it is
30 * only called from functions that are also defined as not thread-safe,
31 * namely C_Finalize in softoken, and the SSL bypass shutdown callback called
35 loadFreeBLOnce = pristineCallOnce;
39 /* ============== New for 3.003 =============================== */