summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-03-13 21:55:39 +0000
committerVincent Sanders <vince@kyllikki.org>2017-03-13 21:55:39 +0000
commit27aa56cbf6d1f4862594ca0369aabcd56bf2aa48 (patch)
treeaa30aa1f04e7f39997ff13c19c01a234e0889450
parentd55d7f3e1e50ad4b5199d1ea84922fedff859e78 (diff)
downloadnetsurf-27aa56cbf6d1f4862594ca0369aabcd56bf2aa48.tar.gz
netsurf-27aa56cbf6d1f4862594ca0369aabcd56bf2aa48.tar.bz2
make the urldb content type setting API return an error
-rw-r--r--content/urldb.c9
-rw-r--r--content/urldb.h3
2 files changed, 8 insertions, 4 deletions
diff --git a/content/urldb.c b/content/urldb.c
index b795ac3f4..f386aa941 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -3204,17 +3204,20 @@ nserror urldb_set_url_title(nsurl *url, const char *title)
/* exported interface documented in content/urldb.h */
-void urldb_set_url_content_type(nsurl *url, content_type type)
+nserror urldb_set_url_content_type(nsurl *url, content_type type)
{
struct path_data *p;
assert(url);
p = urldb_find_url(url);
- if (!p)
- return;
+ if (!p) {
+ return NSERROR_NOT_FOUND;
+ }
p->urld.type = type;
+
+ return NSERROR_OK;
}
diff --git a/content/urldb.h b/content/urldb.h
index e3162916d..26b014d01 100644
--- a/content/urldb.h
+++ b/content/urldb.h
@@ -69,8 +69,9 @@ nserror urldb_set_url_title(struct nsurl *url, const char *title);
*
* \param url The URL to look for
* \param type The type to set
+ * \return NSERROR_OK on success or NSERROR_NOT_FOUND if url not in database
*/
-void urldb_set_url_content_type(struct nsurl *url, content_type type);
+nserror urldb_set_url_content_type(struct nsurl *url, content_type type);
/**