diff --git a/wolfCLU/clu_src/tools/clu_funcs.c b/wolfCLU/clu_src/tools/clu_funcs.c index f21fb1d5..7981b9f3 100644 --- a/wolfCLU/clu_src/tools/clu_funcs.c +++ b/wolfCLU/clu_src/tools/clu_funcs.c @@ -457,7 +457,7 @@ int wolfCLU_getAlgo(char* name, char** alg, char** mode, int* size) else if (strcmp(*alg, "camellia") == 0) { #ifndef HAVE_CAMELIA - printf("CAMELIA not compile in.\n"); + printf("CAMELIA not compiled in.\n"); return NOT_COMPILED_IN; #else ret = CAMELLIA_BLOCK_SIZE; diff --git a/wolfCLU/clu_src/x509/clu_parse.c b/wolfCLU/clu_src/x509/clu_parse.c index 164332ef..c29e9cec 100644 --- a/wolfCLU/clu_src/x509/clu_parse.c +++ b/wolfCLU/clu_src/x509/clu_parse.c @@ -159,7 +159,7 @@ int wolfCLU_parseFile(char* infile, int inform, char* outfile, int outform, goto clu_parse_cleanup; } - /* write the result of conversion to the outfile specifile */ + /* write the result of conversion to the outfile specified */ ret = fwrite(outBuf, 1, outBufSz, outstream); if (ret <= 0) { wolfCLU_freeBins(inBuf, outBuf, NULL, NULL, NULL);