Skip to content
Snippets Groups Projects
Commit 8a532879 authored by Howard Chu's avatar Howard Chu
Browse files

More for ITS#5117 - only use libfetch for non-file: URLs

parent ec785076
No related branches found
No related tags found
No related merge requests found
......@@ -43,10 +43,7 @@ ldif_open_url(
LDAP_CONST char *urlstr )
{
FILE *url;
#ifdef HAVE_FETCH
url = fetchGetURL( (char*) urlstr, "" );
#else
if( strncasecmp( "file:", urlstr, sizeof("file:")-1 ) == 0 ) {
char *p;
urlstr += sizeof("file:")-1;
......@@ -66,9 +63,12 @@ ldif_open_url(
ber_memfree( p );
} else {
return NULL;
}
#ifdef HAVE_FETCH
url = fetchGetURL( (char*) urlstr, "" );
#else
url = NULL;
#endif
}
return url;
}
......
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