~ubuntu-branches/ubuntu/trusty/libgnumail-java/trusty-proposed

« back to all changes in this revision

Viewing changes to source/gnu/mail/providers/smtp/SMTPTransport.java

  • Committer: Bazaar Package Importer
  • Author(s): Wolfgang Baer
  • Date: 2005-04-05 19:26:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050405192612-5t5dm2wujs5tpuqg
Tags: 1.0-5
* Somehow the cdbs build system tries to also use the alternative
  make build system and interferes with the ant build system.
* Changed build system back to debhelper use only (closes: #303218)
  - Patches are therefore included in the diff.gz, but also
    in the debian/patches dir for reference and later usage
  - Removed dependency on cdbs

Show diffs side-by-side

added added

removed removed

Lines of Context:
331
331
          throw new MessagingException(connection.getLastResponse());
332
332
        mimeMessage.writeTo(dataStream);
333
333
        dataStream.flush();
334
 
        if (connection.finishData())
 
334
        if (!connection.finishData())
335
335
        {
336
336
          unsent.addAll(sent);
337
337
          sent.clear();