New default permission on / directory: rwxr-xr-x

This commit is contained in:
2012-02-27 15:02:25 +00:00
parent 46293e457b
commit d09ee8335e
4 changed files with 25 additions and 1 deletions

View File

@ -162,6 +162,9 @@ int isoburn_new(struct isoburn **objpt, int flag)
isoburn_report_iso_error(ret, "Cannot create image object", 0, "FATAL", 0);
goto failed;
}
ret= isoburn_root_defaults(o->image, 0);
if(ret <= 0)
goto failed;
isoburn_link(o, isoburn_list_start, 1);
return(1);
failed:;