Skip to content

Commit

Permalink
common.h: Make error string optional
Browse files Browse the repository at this point in the history
The call `psslerror("")` prints a line with ":" only. Make the string
optional so that NULL or "" won't output anything.
donald committed May 23, 2021
1 parent 36d93d4 commit 19e11ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common.h
Original file line number Diff line number Diff line change
@@ -44,7 +44,8 @@ static void __attribute__((unused)) free_string(char **ptr) {
}

static void __attribute__((unused)) psslerror(char *str) {
COMMON_LOG(LOG_ERR, "%s:", str);
if (str != NULL && strcmp(str, "") != 0)
COMMON_LOG(LOG_ERR, "%s:", str);
unsigned long ssl_err;
while ((ssl_err = ERR_get_error())) {
COMMON_LOG(LOG_ERR, "ssl error: %lud:%s:%s:%s",

0 comments on commit 19e11ec

Please sign in to comment.