Use the new netgeturlquick that Gagan has given us

This commit is contained in:
guha 1998-05-01 22:42:37 +00:00
Родитель 8f901ec3a2
Коммит de7a381a41
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -212,7 +212,11 @@ rdf_GetURL (MWContext *cx, int method, Net_GetUrlExitFunc *exit_routine, RDFFil
/* urls->use_local_copy = rdfFile->localp;*/
urls->fe_data = rdfFile;
if (method) urls->method = method;
NET_GetURL(urls, FO_CACHE_AND_RDF, cx, rdf_GetUrlExitFunc);
if (rdfFile->localp) {
NET_GetURLQuick(urls, FO_CACHE_AND_RDF, cx, rdf_GetUrlExitFunc);
} else {
NET_GetURLQuick(urls, FO_CACHE_AND_RDF, cx, rdf_GetUrlExitFunc);
}
return 1;
}