Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/1f52b2d514ac12bfbcb97...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/1f52b2d514ac12bfbcb97f4...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/1f52b2d514ac12bfbcb97f4ed...
The branch, master has been updated
via 1f52b2d514ac12bfbcb97f4ed3eb556d5e38739d (commit)
from b23f55c81bca21de7841111ace809df0f6408d65 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=1f52b2d514ac12bfbcb...
commit 1f52b2d514ac12bfbcb97f4ed3eb556d5e38739d
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
remove unused fetch acessor
diff --git a/content/fetch.c b/content/fetch.c
index 7324c30..a1542eb 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -642,13 +642,6 @@ long fetch_http_code(struct fetch *fetch)
return fetch->http_code;
}
-/* exported interface documented in content/fetch.h */
-bool fetch_get_verifiable(struct fetch *fetch)
-{
- assert(fetch);
-
- return fetch->verifiable;
-}
/* exported interface documented in content/fetch.h */
struct fetch_multipart_data *
diff --git a/content/fetch.h b/content/fetch.h
index 51e08cf..5521778 100644
--- a/content/fetch.h
+++ b/content/fetch.h
@@ -158,13 +158,6 @@ void fetch_change_callback(struct fetch *fetch, fetch_callback
callback, void *p
*/
long fetch_http_code(struct fetch *fetch);
-/**
- * Determine if a fetch was verifiable
- *
- * \param fetch Fetch to consider
- * \return Verifiable status of fetch
- */
-bool fetch_get_verifiable(struct fetch *fetch);
/**
* Free a linked list of fetch_multipart_data.
-----------------------------------------------------------------------
Summary of changes:
content/fetch.c | 7 -------
content/fetch.h | 7 -------
2 files changed, 14 deletions(-)
diff --git a/content/fetch.c b/content/fetch.c
index 7324c30..a1542eb 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -642,13 +642,6 @@ long fetch_http_code(struct fetch *fetch)
return fetch->http_code;
}
-/* exported interface documented in content/fetch.h */
-bool fetch_get_verifiable(struct fetch *fetch)
-{
- assert(fetch);
-
- return fetch->verifiable;
-}
/* exported interface documented in content/fetch.h */
struct fetch_multipart_data *
diff --git a/content/fetch.h b/content/fetch.h
index 51e08cf..5521778 100644
--- a/content/fetch.h
+++ b/content/fetch.h
@@ -158,13 +158,6 @@ void fetch_change_callback(struct fetch *fetch, fetch_callback
callback, void *p
*/
long fetch_http_code(struct fetch *fetch);
-/**
- * Determine if a fetch was verifiable
- *
- * \param fetch Fetch to consider
- * \return Verifiable status of fetch
- */
-bool fetch_get_verifiable(struct fetch *fetch);
/**
* Free a linked list of fetch_multipart_data.
--
NetSurf Browser