From 1b83c83a4ff592be5e65ab2b7a05342e394e9286 Mon Sep 17 00:00:00 2001 From: Sascha Tommasone Date: Sat, 6 Jul 2024 17:53:16 +0200 Subject: [PATCH] [Assignment-7] fixed typo --- 7-SGX_Hands-on/src/app/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-SGX_Hands-on/src/app/main.c b/7-SGX_Hands-on/src/app/main.c index 2cfd72c..f4356b0 100644 --- a/7-SGX_Hands-on/src/app/main.c +++ b/7-SGX_Hands-on/src/app/main.c @@ -23,7 +23,7 @@ int main(int argc, char** argv) { else if (strcmp(command, "proxysetup")==0) handle_proxysetup(argc-2, argv+2); else if (strcmp(command, "embedded")==0) - handle_proxysetup(argc-2, argv+2); + handle_embedded_device(argc-2, argv+2); else syntax_exit(); }