Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 40521 | Differences between
and this patch

Collapse All | Expand All

(-)qmail-smtpd.c.bak (-1 / +2 lines)
Lines 806-812 Link Here
806
  out("220 ready for tls\r\n"); flush();
806
  out("220 ready for tls\r\n"); flush();
807
807
808
  if(!(ssl=SSL_new(ctx))) die_read();
808
  if(!(ssl=SSL_new(ctx))) die_read();
809
  SSL_set_fd(ssl,0);
809
  SSL_set_rfd(ssl,0);
810
  SSL_set_wfd(ssl,1);
810
  if(SSL_accept(ssl)<=0) die_read();
811
  if(SSL_accept(ssl)<=0) die_read();
811
  substdio_fdbuf(&ssout,SSL_write,ssl,ssoutbuf,sizeof(ssoutbuf));
812
  substdio_fdbuf(&ssout,SSL_write,ssl,ssoutbuf,sizeof(ssoutbuf));
812
813

Return to bug 40521