diff --git a/examples/protocols/openssl_client/main/openssl_client_example.h b/examples/protocols/openssl_client/main/openssl_client_example.h index 7b6ef8d4034..fbdecb0d277 100644 --- a/examples/protocols/openssl_client/main/openssl_client_example.h +++ b/examples/protocols/openssl_client/main/openssl_client_example.h @@ -33,7 +33,7 @@ #define OPENSSL_EXAMPLE_TASK_NAME "openssl_example" #define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240 -#define OPENSSL_EXAMPLE_TASK_PRORIOTY 8 +#define OPENSSL_EXAMPLE_TASK_PRIORITY 8 #define OPENSSL_EXAMPLE_RECV_BUF_LEN 1024 diff --git a/examples/protocols/openssl_client/main/openssl_client_example_main.c b/examples/protocols/openssl_client/main/openssl_client_example_main.c index cf9d14d41c8..691dbde37cb 100644 --- a/examples/protocols/openssl_client/main/openssl_client_example_main.c +++ b/examples/protocols/openssl_client/main/openssl_client_example_main.c @@ -169,7 +169,7 @@ static void openssl_example_client_init(void) OPENSSL_EXAMPLE_TASK_NAME, OPENSSL_EXAMPLE_TASK_STACK_WORDS, NULL, - OPENSSL_EXAMPLE_TASK_PRORIOTY, + OPENSSL_EXAMPLE_TASK_PRIORITY, &openssl_handle); if (ret != pdPASS) { diff --git a/examples/protocols/openssl_server/main/openssl_server_example.h b/examples/protocols/openssl_server/main/openssl_server_example.h index bdb84bae5cd..8097b2b7417 100755 --- a/examples/protocols/openssl_server/main/openssl_server_example.h +++ b/examples/protocols/openssl_server/main/openssl_server_example.h @@ -23,7 +23,7 @@ #define OPENSSL_EXAMPLE_TASK_NAME "openssl_example" #define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240 -#define OPENSSL_EXAMPLE_TASK_PRORIOTY 8 +#define OPENSSL_EXAMPLE_TASK_PRIORITY 8 #define OPENSSL_EXAMPLE_RECV_BUF_LEN 1024 diff --git a/examples/protocols/openssl_server/main/openssl_server_example_main.c b/examples/protocols/openssl_server/main/openssl_server_example_main.c index 00d5c5ba754..a765c355227 100755 --- a/examples/protocols/openssl_server/main/openssl_server_example_main.c +++ b/examples/protocols/openssl_server/main/openssl_server_example_main.c @@ -203,7 +203,7 @@ static void openssl_server_init(void) OPENSSL_EXAMPLE_TASK_NAME, OPENSSL_EXAMPLE_TASK_STACK_WORDS, NULL, - OPENSSL_EXAMPLE_TASK_PRORIOTY, + OPENSSL_EXAMPLE_TASK_PRIORITY, &openssl_handle); if (ret != pdPASS) {