summaryrefslogtreecommitdiff
path: root/frontends/monkey/main.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2016-06-27 21:09:39 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2016-06-27 21:09:39 +0100
commit47ccd9855db44881339e68093655247a78fd8598 (patch)
tree521f29cf9f5bb7302c24b029ea56f835fc127bbe /frontends/monkey/main.c
parent767b73f5c703e447a3041423ff220a88a7c0c569 (diff)
downloadnetsurf-47ccd9855db44881339e68093655247a78fd8598.tar.gz
netsurf-47ccd9855db44881339e68093655247a78fd8598.tar.bz2
Move fetcher_fdset to fetch.h (and rename to fetch_fdset). Maybe not ideal but better
Diffstat (limited to 'frontends/monkey/main.c')
-rw-r--r--frontends/monkey/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/monkey/main.c b/frontends/monkey/main.c
index 0ddfd9a80..0059ff047 100644
--- a/frontends/monkey/main.c
+++ b/frontends/monkey/main.c
@@ -35,7 +35,7 @@
#include "netsurf/netsurf.h"
#include "netsurf/url_db.h"
#include "netsurf/cookie_db.h"
-#include "content/fetchers.h"
+#include "content/fetch.h"
#include "monkey/dispatch.h"
#include "monkey/browser.h"
@@ -258,7 +258,7 @@ static void monkey_run(void)
while (!monkey_done) {
/* clears fdset */
- fetcher_fdset(&read_fd_set, &write_fd_set, &exc_fd_set, &max_fd);
+ fetch_fdset(&read_fd_set, &write_fd_set, &exc_fd_set, &max_fd);
/* add stdin to the set */
if (max_fd < 0) {