Removed another SSL-related timeout crash

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19574 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm 2006-12-20 21:09:28 +00:00
parent 175f68c589
commit 5618c4e835
1 changed files with 1 additions and 1 deletions

View File

@ -990,7 +990,7 @@ SMTPProtocol::SendCommand(const char *cmd)
D(bug("C:%s\n", cmd));
#ifdef USESSL
if (use_ssl) {
if (use_ssl && ssl) {
if (SSL_write(ssl,cmd,::strlen(cmd)) < 0)
return B_ERROR;
} else