From a70c32422a56ce4c5c2107fe59509215ea36e6e9 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 17 Mar 2011 11:57:09 +0000 Subject: gui_find_resource --> gui_get_resource_url. svn path=/trunk/netsurf/; revision=12089 --- content/fetchers/resource.c | 2 +- content/fetchers/resource.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'content/fetchers') diff --git a/content/fetchers/resource.c b/content/fetchers/resource.c index c8fb060b6..b0aac9067 100644 --- a/content/fetchers/resource.c +++ b/content/fetchers/resource.c @@ -177,7 +177,7 @@ fetch_resource_setup(struct fetch *fetchh, url_get_components(url, &urlcomp); - ctx->redirect_url = gui_find_resource(urlcomp.path); + ctx->redirect_url = gui_get_resource_url(urlcomp.path); if (ctx->redirect_url == NULL) { ctx->handler = fetch_resource_notfound_handler; } else { diff --git a/content/fetchers/resource.h b/content/fetchers/resource.h index 8a6c230f5..35c397310 100644 --- a/content/fetchers/resource.h +++ b/content/fetchers/resource.h @@ -48,6 +48,6 @@ void fetch_resource_register(void); * \return A string containing the full URL of the target object or * NULL if no suitable resource can be found. */ -char* gui_find_resource(const char *filename); +char* gui_get_resource_url(const char *filename); #endif -- cgit v1.2.3