Skip to content

Commit

Permalink
common.h: Fix formating in psslerror()
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed May 3, 2021
1 parent 73bbf37 commit 7fdafed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void __attribute__((unused)) free_string(char **ptr) {
}

static void psslerror(char *str) {
fprintf(stderr, str);
fprintf(stderr, "%s\n", str);
ERR_print_errors_fp(stderr);
}

Expand Down

0 comments on commit 7fdafed

Please sign in to comment.