fix typo in removing of apr dso funcitons
This commit is contained in:
parent
45303fdc93
commit
d35a6818a3
|
@ -205,7 +205,7 @@ static switch_status_t load_config(JavaVMOption **javaOptions, int *optionCount,
|
||||||
if (path != NULL)
|
if (path != NULL)
|
||||||
{
|
{
|
||||||
javaVMHandle = switch_dso_open(path, 0, &derr);
|
javaVMHandle = switch_dso_open(path, 0, &derr);
|
||||||
if (derr || !dso) {
|
if (derr || !javaVMHandle) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error loading %s\n", path);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error loading %s\n", path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue