mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Avoid sending error message to stdout
This commit is contained in:
parent
8e0ed1e83e
commit
e2fb7301de
1 changed files with 1 additions and 1 deletions
|
|
@ -424,7 +424,7 @@ void handle_connect_result(mspool *ms, msevent *nse, enum nse_status status) {
|
|||
if (iod->ssl_session) {
|
||||
rc = SSL_set_session(iod->ssl, iod->ssl_session);
|
||||
if (rc == 0)
|
||||
printf("Uh-oh: SSL_set_session() failed - please tell Fyodor\n");
|
||||
fprintf(stderr, "Uh-oh: SSL_set_session() failed - please tell Fyodor\n");
|
||||
iod->ssl_session = NULL; /* No need for this any more */
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue