Skip to content

Commit

Permalink
Update src/libstore/daemon.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
  • Loading branch information
MatthewCroughan and roberth authored Dec 30, 2022
1 parent 01c67e4 commit e1a65b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstore/daemon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -970,9 +970,9 @@ static void performOp(TunnelLogger * logger, ref<Store> store,
break;
}

case wopCheckTrustedUser: {
case wopIsTrustedUser: {
logger->startWork();
bool result = trusted && store->checkTrustedUser();
bool result = trusted && store->isTrustedUser();
logger->stopWork();
to << result;
break;
Expand Down

0 comments on commit e1a65b2

Please sign in to comment.