mirror of https://github.com/sipwise/kamailio.git
Change-Id: Id3cd923c938732e90d56a2a7a6b13710e4b6a146changes/43/39943/1
parent
9fea7d6bf1
commit
c2c59c709e
@ -0,0 +1,29 @@
|
|||||||
|
From 361542a953ceaab1894f790e21eecf74008b749a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Seva <linuxmaniac@torreviejawireless.org>
|
||||||
|
Date: Mon, 11 May 2020 15:06:26 +0200
|
||||||
|
Subject: [PATCH] cfgt: fix implicit declaration of 'strcasestr'
|
||||||
|
|
||||||
|
> cfgt_int.c: In function 'cfgt_msgout':
|
||||||
|
> cfgt_int.c:863:21: warning: implicit declaration of function 'strcasestr'; did you mean 'strcasecmp'? [-Wimplicit-function-declaration]
|
||||||
|
> 863 | if(buf->len > 7 && strcasestr(buf->s, "OPTIONS")) {
|
||||||
|
> | ^~~~~~~~~~
|
||||||
|
> | strcasecmp
|
||||||
|
---
|
||||||
|
src/modules/cfgt/cfgt_int.c | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/src/modules/cfgt/cfgt_int.c b/src/modules/cfgt/cfgt_int.c
|
||||||
|
index 382d696f53..c47a1cecc0 100644
|
||||||
|
--- a/src/modules/cfgt/cfgt_int.c
|
||||||
|
+++ b/src/modules/cfgt/cfgt_int.c
|
||||||
|
@@ -19,6 +19,7 @@
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
+#define _GNU_SOURCE
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
|
|
||||||
Loading…
Reference in new issue