summaryrefslogtreecommitdiff
path: root/Kernel/Ext2FileSystem.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-27 12:32:53 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-27 12:32:53 +0100
commit1d2529b4a13a18900d36f9d3b914b1bca68d962f (patch)
treed3be7621ba3c925321aabe609d6622f41887cfe8 /Kernel/Ext2FileSystem.h
parent711e2b2651505da91cef983df130118bc6b709d8 (diff)
downloadserenity-1d2529b4a13a18900d36f9d3b914b1bca68d962f.zip
Add chown() syscall and a simple /bin/chown program.
Diffstat (limited to 'Kernel/Ext2FileSystem.h')
-rw-r--r--Kernel/Ext2FileSystem.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Ext2FileSystem.h b/Kernel/Ext2FileSystem.h
index 737ff65dee..eddabe946a 100644
--- a/Kernel/Ext2FileSystem.h
+++ b/Kernel/Ext2FileSystem.h
@@ -42,6 +42,7 @@ private:
virtual int decrement_link_count() override;
virtual size_t directory_entry_count() const override;
virtual KResult chmod(mode_t) override;
+ virtual KResult chown(uid_t, gid_t) override;
void populate_lookup_cache() const;