forked from mirrors/linphone-iphone
Fix bug with the keywordcmp macro.
This macro was supposed to be passed a string literal as first argument but was used with a string pointer sometimes.
This commit is contained in:
parent
bee6752f6e
commit
f6038bf3ef
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#include "sal.h"
|
||||
#include <eXosip2/eXosip.h>
|
||||
|
||||
#define keywordcmp(key,b) strncmp(key,b,sizeof(key))
|
||||
#define keywordcmp(key,b) strcmp(key,b)
|
||||
|
||||
#ifdef FOR_LATER
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue