diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-04-07 13:41:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 13:41:32 +0200 |
commit | 81dfc2b01231c65137017de092c8506838fadd94 (patch) | |
tree | 8eb60530be71b451d588d493dde52efe86ea30ff /src/libstore/local-store.cc | |
parent | 91856396317995aa38dc7244357596b8de27f937 (diff) | |
parent | 9207f945822764a041a485009759f0a895468e94 (diff) |
Merge pull request #7515 from MatthewCroughan/mc/check-trusted-user
Add Store::isTrustedClient()
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index f58d90895..e0ad50f6d 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1685,6 +1685,11 @@ unsigned int LocalStore::getProtocol() return PROTOCOL_VERSION; } +std::optional<TrustedFlag> LocalStore::isTrustedClient() +{ + return Trusted; +} + #if defined(FS_IOC_SETFLAGS) && defined(FS_IOC_GETFLAGS) && defined(FS_IMMUTABLE_FL) |