~ubuntu-branches/ubuntu/hardy/postfix/hardy-security

« back to all changes in this revision

Viewing changes to src/smtp/smtp_proto.c

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2007-03-12 22:42:23 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20070312224223-4kj84ctp6t9olxw1
Tags: 2.3.8-2
Updated Czech debconf template.  Closes: #414392

Show diffs side-by-side

added added

removed removed

Lines of Context:
725
725
        vstring_sprintf_append(serverid, "&p=%s",
726
726
                               tls_protocol_names(VAR_SMTP_TLS_MAND_PROTO,
727
727
                                                  session->tls_protocols));
728
 
    if (session->tls_level >= TLS_LEV_ENCRYPT && session->tls_cipherlist)
 
728
    if (session->tls_level >= TLS_LEV_ENCRYPT)
729
729
        vstring_sprintf_append(serverid, "&c=%s", session->tls_cipherlist);
730
730
 
731
731
    tls_props.ctx = smtp_tls_ctx;