summaryrefslogtreecommitdiffstats
path: root/debian/patches/upstream/0001-allow-symlinks.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-10 12:30:11 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-10 14:04:07 +0000
commita4fa4dd5785fcafb1b87762c6874928b5b744df7 (patch)
treea4f1fdb066e576b40da4a1a862be9427bd32acfc /debian/patches/upstream/0001-allow-symlinks.patch
parentShamelessly adding myself in copyright. (diff)
downloadnetdata-a4fa4dd5785fcafb1b87762c6874928b5b744df7.tar.xz
netdata-a4fa4dd5785fcafb1b87762c6874928b5b744df7.zip
Sorting patches into comonly used subdirectories.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/upstream/0001-allow-symlinks.patch')
-rw-r--r--debian/patches/upstream/0001-allow-symlinks.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/patches/upstream/0001-allow-symlinks.patch b/debian/patches/upstream/0001-allow-symlinks.patch
new file mode 100644
index 000000000..bfc589b29
--- /dev/null
+++ b/debian/patches/upstream/0001-allow-symlinks.patch
@@ -0,0 +1,15 @@
+Author: Lennart Weller <lhw@ring0.de>
+Description: Remove file serve restrictions for symlinks.
+
+diff -Naurp netdata.orig/web/server/web_client.c netdata/web/server/web_client.c
+--- netdata.orig/web/server/web_client.c
++++ netdata/web/server/web_client.c
+@@ -376,7 +376,7 @@ int mysendfile(struct web_client *w, cha
+ int done = 0;
+ while(!done) {
+ // check if the file exists
+- if (lstat(webfilename, &statbuf) != 0) {
++ if (stat(webfilename, &statbuf) != 0) {
+ debug(D_WEB_CLIENT_ACCESS, "%llu: File '%s' is not found.", w->id, webfilename);
+ w->response.data->contenttype = CT_TEXT_HTML;
+ buffer_strcat(w->response.data, "File does not exist, or is not accessible: ");