diff options
| author | Bobby <[email protected]> | 2026-01-28 10:50:14 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-01-28 10:50:14 +0530 |
| commit | a65d580d866b08576d5f2b69ca3ca082df98aa3f (patch) | |
| tree | 164e133f075b4ee7c1d824d2ff6c338c5dcf9964 /system | |
| parent | 250c05bec6627fa21863e8c4d715d5d2da8ef562 (diff) | |
| download | akiba-a65d580d866b08576d5f2b69ca3ca082df98aa3f.tar.xz akiba-a65d580d866b08576d5f2b69ca3ca082df98aa3f.zip | |
feat: Update stack viewer to include owner, permissions, and modified time details
Diffstat (limited to 'system')
| -rw-r--r-- | system/libraries/akiba/io.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/akiba/io.zig b/system/libraries/akiba/io.zig index 3560b6a..6dba329 100644 --- a/system/libraries/akiba/io.zig +++ b/system/libraries/akiba/io.zig @@ -87,10 +87,10 @@ pub fn viewstack(path: []const u8, entries: []StackEntry) Error!usize { pub const StackEntry = extern struct { identity: [64]u8, identity_len: u8, - size: u32, is_stack: bool, - modified_time: u64, - owner_name: [64]u8, owner_name_len: u8, permission_type: u8, + size: u32, + modified_time: u64, + owner_name: [64]u8, }; |
