mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 21:28:08 +00:00
fix missing )
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@92 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
8b8e2956e2
commit
b1ffd1f219
1 changed files with 2 additions and 2 deletions
|
|
@ -346,8 +346,8 @@ int ms_load_plugins(const char *dir){
|
|||
return -1;
|
||||
}
|
||||
while( (de=readdir(ds))!=NULL){
|
||||
if ((de->d_type==DT_REG && strstr(de->d_name,PLUGINS_EXT)!=NULL)
|
||||
|| (de->d_type==DT_UNKNOWN && strstr(de->d_name,PLUGINS_EXT)==de->d_name+strlen(de->d_name)-strlen(PLUGINS_EXT)) {
|
||||
if ((de->d_type==DT_REG && strstr(de->d_name,PLUGINS_EXT)!=NULL)
|
||||
|| (de->d_type==DT_UNKNOWN && strstr(de->d_name,PLUGINS_EXT)==de->d_name+strlen(de->d_name)-strlen(PLUGINS_EXT))) {
|
||||
void *handle;
|
||||
fullpath=ms_strdup_printf("%s/%s",dir,de->d_name);
|
||||
ms_message("Loading plugin %s...",fullpath);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue