fix slash between directories

add fixing contexts of Android directory for apps that store stuff here
fix data/data contexts to be recursive

Change-Id: I1122559c83845c3af0a351a4034cd7ad6da83fa5
This commit is contained in:
bigbiff bigbiff
2014-02-20 18:26:13 -05:00
parent b2a36d35c9
commit 731df79eb7
3 changed files with 53 additions and 34 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ int TWFunc::Exec_Cmd(const string& cmd) {
switch(pid = fork())
{
case -1:
LOGERR("Exec_Cmd(): vfork failed!\n");
LOGERR("Exec_Cmd(): vfork failed: %d!\n", errno);
return -1;
case 0: // child
execl("/sbin/sh", "sh", "-c", cmd.c_str(), NULL);