~ubuntu-branches/ubuntu/oneiric/postfix/oneiric

« back to all changes in this revision

Viewing changes to src/util/dict_cdb.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2008-09-07 14:02:15 UTC
  • mfrom: (29.1.21 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080907140215-d9zf8bj803ditke5
Tags: 2.5.5-1.1
* Non-maintainer upload.
* Add rsyslog.d config snipped to create a /dev/log syslog socket in the
  postfix chroot.  Also, add a note about other syslog daemons to
  README.Debian.  Closes: #311812

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
    if (r < 0)
271
271
        msg_fatal("error writing %s: %m", dict_cdbm->tmp_path);
272
272
    else if (r > 0) {
273
 
        if (dict->flags & (DICT_FLAG_DUP_IGNORE | DICT_FLAG_DUP_REPLACE));
 
273
        if (dict->flags & (DICT_FLAG_DUP_IGNORE | DICT_FLAG_DUP_REPLACE))
 
274
             /* void */ ;
274
275
        else if (dict->flags & DICT_FLAG_DUP_WARN)
275
276
            msg_warn("%s: duplicate entry: \"%s\"",
276
277
                     dict_cdbm->dict.name, name);