summaryrefslogtreecommitdiff
path: root/content/fetchers/file.c
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-04-13 23:36:26 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-25 22:04:54 +0200
commit7fb4c9e101f8477217ce9d818835bab5cc30f484 (patch)
treeb67b07aec1771eec2a602c82ddd53c62e2d6c5e9 /content/fetchers/file.c
parenta618be2a69a347128a4e29c879abf4a913421f52 (diff)
downloadnetsurf-7fb4c9e101f8477217ce9d818835bab5cc30f484.tar.gz
netsurf-7fb4c9e101f8477217ce9d818835bab5cc30f484.tar.bz2
Step 2 : Abuse _TARGET_IS_KOLIBRIOS and build with make TARGET=kolibrios
Diffstat (limited to 'content/fetchers/file.c')
-rw-r--r--content/fetchers/file.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/content/fetchers/file.c b/content/fetchers/file.c
index 4fa1a2138..067d9be50 100644
--- a/content/fetchers/file.c
+++ b/content/fetchers/file.c
@@ -656,7 +656,13 @@ static void fetch_file_process_dir(struct fetch_file_context *ctx,
int i; /* directory entry index */
int n; /* number of directory entries */
+#ifndef _TARGET_IS_KOLIBRIOS
n = scandir(ctx->path, &listing, 0, dir_sort_alpha);
+#else
+ /* Don't have scandir yet */
+ n = 1;
+#endif
+
if (n < 0) {
fetch_file_process_error(ctx,
fetch_file_errno_to_http_code(errno));