Kernel: Add basic Credentials for the system

Now filesystem access/open, etc confirm that you have access for rwxs
This commit is contained in:
Bananymous
2023-06-11 19:52:13 +03:00
parent 3181ea7b4d
commit c7ec19c25c
13 changed files with 168 additions and 54 deletions

View File

@@ -58,7 +58,7 @@ void list_directory(const char* path)
}
else
{
printf("%s %d %s", mode_string(st.st_mode), st.st_size, dirent->d_name);
printf("%s %6d %s", mode_string(st.st_mode), st.st_size, dirent->d_name);
}
}
else