From d5fddd91b966424bb63e943e789704d52382cc18 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 22 Oct 2015 23:15:58 +0200 Subject: explicitely ignore return value of symlink(3) call glibc sets __attribute_warn_unused_result__ on symlink(3) if FORTIFY_SOURCE is set. This breaks procd which deliberately ignores the result of the symlink(3) call early during init as there wouldn't be anything better to do in that case other than ignoring the error and trying to survive. Introduce libc-compat.h to work-around libc anomalities. Signed-off-by: Daniel Golle --- plug/coldplug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plug') diff --git a/plug/coldplug.c b/plug/coldplug.c index 123e17d..5fcb9a3 100644 --- a/plug/coldplug.c +++ b/plug/coldplug.c @@ -19,6 +19,7 @@ #include #include "../procd.h" +#include "../libc-compat.h" #include "hotplug.h" @@ -45,7 +46,7 @@ void procd_coldplug(void) umount2("/dev/pts", MNT_DETACH); umount2("/dev/", MNT_DETACH); mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755,size=512K"); - symlink("/tmp/shm", "/dev/shm"); + ignore(symlink("/tmp/shm", "/dev/shm")); mkdir("/dev/pts", 0755); umask(oldumask); mount("devpts", "/dev/pts", "devpts", MS_NOEXEC | MS_NOSUID, 0); -- cgit v1.2.3