summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-01-31 22:56:45 +0000
committerVincent Sanders <vince@kyllikki.org>2017-01-31 22:56:45 +0000
commit1f52b2d514ac12bfbcb97f4ed3eb556d5e38739d (patch)
treea7aac2f5fc086ef248f29b7abde278c0c764f557 /content
parentb23f55c81bca21de7841111ace809df0f6408d65 (diff)
downloadnetsurf-1f52b2d514ac12bfbcb97f4ed3eb556d5e38739d.tar.gz
netsurf-1f52b2d514ac12bfbcb97f4ed3eb556d5e38739d.tar.bz2
remove unused fetch acessor
Diffstat (limited to 'content')
-rw-r--r--content/fetch.c7
-rw-r--r--content/fetch.h7
2 files changed, 0 insertions, 14 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 7324c30a2..a1542eb01 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 51e08cfc3..5521778ea 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.