You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
304 B
14 lines
304 B
6 years ago
|
--- src/locate.c.orig
|
||
|
+++ src/locate.c
|
||
|
@@ -945,8 +945,10 @@
|
||
|
static void
|
||
|
drop_setgid (void)
|
||
|
{
|
||
|
+#if !defined(__ANDROID__)
|
||
|
if (setgid (getgid ()) != 0)
|
||
|
error (EXIT_FAILURE, errno, _("can not drop privileges"));
|
||
|
+#endif
|
||
|
}
|
||
|
|
||
|
/* Handle a conf_dbpath ENTRY, drop privileges when they are no longer
|