Skip to content
Snippets Groups Projects
Commit 5a5fc087 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Protect strcasecmp from macro w/ args expansion.

parent b1d315c5
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,8 @@ extern char *ldap_pvt_strdup( const char * s );
* some systems fail to declare strcasecmp() and strncasecmp()
* we need them declared so we can obtain pointers to them
*/
extern int strcasecmp(), strncasecmp();
extern int (strcasecmp)();
extern int (strncasecmp)();
#ifndef SAFEMEMCPY
# if defined( HAVE_MEMMOVE )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment