summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2006-07-16 01:07:29 +0000
committerJames Bursa <james@netsurf-browser.org>2006-07-16 01:07:29 +0000
commit74b6dce0be728d01e82fcf3c3f5375c25398c54e (patch)
tree902d155ec26567da338ddac07386952572da79b9
parentdc612b767ce3e6d7848bdd5f1e54dcc00f81673e (diff)
downloadnetsurf-74b6dce0be728d01e82fcf3c3f5375c25398c54e.tar.gz
netsurf-74b6dce0be728d01e82fcf3c3f5375c25398c54e.tar.bz2
Fix debug build.
svn path=/trunk/netsurf/; revision=2761
-rw-r--r--debug/netsurfd.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/debug/netsurfd.c b/debug/netsurfd.c
index 8f6fdd852..373dc3e3b 100644
--- a/debug/netsurfd.c
+++ b/debug/netsurfd.c
@@ -14,6 +14,7 @@
#include "netsurf/content/content.h"
#include "netsurf/content/fetchcache.h"
#include "netsurf/content/urldb.h"
+#include "netsurf/desktop/cookies.h"
#include "netsurf/desktop/gui.h"
#include "netsurf/desktop/options.h"
#include "netsurf/desktop/textinput.h"
@@ -201,3 +202,14 @@ bool gui_search_term_highlighted(struct gui_window *g,
const char *local_encoding_name(void) { return "ISO-8859-1"; }
struct caret ghost_caret;
+
+bool cookies_update(const struct cookie_data *data) { return true; }
+
+char *url_to_path(const char *url)
+{
+ return strdup(url + 5);
+}
+
+void tree_set_node_sprite(struct node *node, const char *sprite,
+ const char *expanded) { }
+