Skip to content

Commit 4724e35

Browse files
author
Jethro Beekman
committed
Stray use of stderr, thanks to @xlz in #1 for noticing
1 parent f44b0cf commit 4724e35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ssltrace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ void ssltrace_debug(const char* fmt, ...)
116116
va_list ap;
117117

118118
fputs(SSLTRACE ": ",ssltrace_log_handle());
119-
va_start(ap, fmt);vfprintf(stderr, fmt, ap);va_end(ap);
119+
va_start(ap, fmt);vfprintf(ssltrace_log_handle(), fmt, ap);va_end(ap);
120120
fputc('\n',ssltrace_log_handle());
121121
fflush(ssltrace_log_handle());
122122
}

0 commit comments

Comments
 (0)