~ubuntu-branches/ubuntu/trusty/postfix/trusty-updates

« back to all changes in this revision

Viewing changes to src/smtpstone/smtp-sink.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, LaMont Jones, localization folks
  • Date: 2014-02-11 07:44:30 UTC
  • mfrom: (58.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140211074430-kwkoxdz0fbajn0fj
Tags: 2.11.0-1
[LaMont Jones]

* New upstream release: 2.11.0

[localization folks]

* l10n: Updated German translations.  Closes: #734893 (Helge Kreutzmann)

Show diffs side-by-side

added added

removed removed

Lines of Context:
606
606
 
607
607
static void ehlo_response(SINK_STATE *state, const char *args)
608
608
{
609
 
#define SKIP(cp, cond) for (/* void */; *cp && (cond); cp++)
 
609
#define SKIP(cp, cond) do { \
 
610
        for (/* void */; *cp && (cond); cp++) \
 
611
            /* void */; \
 
612
    } while (0)
610
613
 
611
614
    /* EHLO aborts a mail transaction in progress. */
612
615
    mail_cmd_reset(state);