From 6b4e04c859769a19760acd6d8bd63eee41fcdc7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kowalczyk?= Date: Tue, 28 Apr 2020 19:41:41 +0200 Subject: [PATCH] [Linux-SGX] Fix path to pal-sgx-get-token in error message --- Pal/src/host/Linux-SGX/sgx_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Pal/src/host/Linux-SGX/sgx_main.c b/Pal/src/host/Linux-SGX/sgx_main.c index 22a6e8f2..75cf73c7 100644 --- a/Pal/src/host/Linux-SGX/sgx_main.c +++ b/Pal/src/host/Linux-SGX/sgx_main.c @@ -868,9 +868,9 @@ static int load_enclave (struct pal_enclave * enclave, O_RDONLY|O_CLOEXEC, 0); if (IS_ERR(enclave->token)) { SGX_DBG(DBG_E, "Cannot open token \'%s\'. Use \'" - PAL_FILE("pal-sgx-get-token") - "\' on the runtime host or run \'make SGX=1 sgx-tokens\' " - "in the Graphene source to create the token file.\n", + PAL_FILE("host/Linux-SGX/signer/pal-sgx-get-token") + "\' on the runtime host or run \'make SGX=1 sgx-tokens\' in the Graphene source to " + "create the token file.\n", token_uri); free(token_uri); return -EINVAL;