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

Sync with HEAD - only use libfetch for non-FILE URLs

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