Skip to content

Commit

Permalink
openssl_client, openssl_server example: Fix misspelling of PRIORITY i…
Browse files Browse the repository at this point in the history
…n OPENSSL_EXAMPLE_TASK_PRIORITY

Merges espressif#929
  • Loading branch information
chmorgan authored and projectgus committed Sep 20, 2017
1 parent 5a98cbf commit 76db44e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 76db44e

Please sign in to comment.