Commit 167a2bd2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Disable root wrapper by default

until it is fixed
parent f69b5658
...@@ -113,12 +113,7 @@ static uid_t guess_user (void) ...@@ -113,12 +113,7 @@ static uid_t guess_user (void)
if (uid != (uid_t)(-1)) if (uid != (uid_t)(-1))
return uid; return uid;
/* Try nobody */ return 0;
uid = parse_user ("nobody");
if (uid != (uid_t)(-1))
return uid;
return 65534;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment