Remove unused variables

pull/206/head
kaleb-himes 2021-05-04 10:23:35 -06:00
parent d4c25f24f7
commit 770c6b589f
1 changed files with 2 additions and 4 deletions

View File

@ -39,10 +39,8 @@ int main(int argc, char** argv)
{
WOLFSSL_CTX* ctx;
int ret;
char serverKeyFile[LARGEST_FILE_PATH] = {0};
char serverCertFile[LARGEST_FILE_PATH] = {0};
char* svrKeyFile = serverKeyFile;
char* svrCertFile = serverCertFile;
char* svrKeyFile = NULL;
char* svrCertFile = NULL;
if (argc == 3) {
(void) svrKeyFile;