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

« back to all changes in this revision

Viewing changes to src/global/resolve_clnt.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:
386
386
        VSTRING *buffer = vstring_alloc(1);
387
387
 
388
388
        while (vstring_fgets_nonl(buffer, VSTREAM_IN)) {
389
 
            if ((addr = split_at(STR(buffer), ' ')) == 0 || *STR(buffer) == 0)
390
 
                msg_fatal("need as input: class address");
 
389
            addr = split_at(STR(buffer), ' ');
 
390
            if (*STR(buffer) == 0)
 
391
                msg_fatal("need as input: class [address]");
 
392
            if (addr == 0)
 
393
                addr = "";
391
394
            resolve(STR(buffer), addr, &reply);
392
395
        }
393
396
        vstring_free(buffer);