commit | d7865b2f754a5e7041536f7ac1825792a1d45881 | [log] [tgz] |
---|---|---|
author | Tomeu Vizoso <tomeu@tomeuvizoso.net> | Tue Oct 01 12:20:29 2013 +0200 |
committer | Kristian Høgsberg <krh@bitplanet.net> | Tue Oct 01 10:41:59 2013 -0700 |
tree | b8a723a14e6ad5e56b0138ac7a2c7422cc96c7d4 | |
parent | 9cefc647cc85476beec71b71e8a440591a3709c0 [diff] |
weston-launch: Only drop privileges if running as root
diff --git a/src/weston-launch.c b/src/weston-launch.c index 525c61c..1b560af 100644 --- a/src/weston-launch.c +++ b/src/weston-launch.c
@@ -577,7 +577,8 @@ if (wl->new_user) setup_session(wl); - drop_privileges(wl); + if (geteuid() == 0) + drop_privileges(wl); setenv_fd("WESTON_TTY_FD", wl->tty); setenv_fd("WESTON_LAUNCHER_SOCK", wl->sock[1]);