diff options
| -rw-r--r-- | public/tools/mgmt.oe/src/CommandLine.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/tools/mgmt.oe/src/CommandLine.cc b/public/tools/mgmt.oe/src/CommandLine.cc index 3e8de78b..3888476c 100644 --- a/public/tools/mgmt.oe/src/CommandLine.cc +++ b/public/tools/mgmt.oe/src/CommandLine.cc @@ -16,11 +16,11 @@ SInt32 _NeMain(SInt32 argc, Char* argv[]) { LIBSYS_UNUSED(argc); LIBSYS_UNUSED(argv); - kJailSrv = JailGetCurrent(); + kJailSrv = ::JailGetCurrent(); MUST_PASS(kJailSrv); - PrintOut(nullptr, "%s", "mgmt.oe - OpenEnclave Management Tool."); + ::PrintOut(nullptr, "%s", "mgmt.oe: OpenEnclave Management Tool."); /// @note JailGetCurrent returns client as nullptr if we're not that client (we'll not be able to access the jail then) if (kJailSrv->fClient == nullptr) return EXIT_FAILURE; |
