~ubuntu-branches/ubuntu/saucy/postfix/saucy

« back to all changes in this revision

Viewing changes to src/util/dict.c

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2011-02-22 11:20:43 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20110222112043-c34ht219w3ybrilr
Tags: 2.8.0-2
* a little more lintian cleanup
* Fix missing format strings in smtp-sink.c

Show diffs side-by-side

added added

removed removed

Lines of Context:
391
391
        after = time((time_t *) 0);
392
392
        if (st.st_mtime < before - 1 || st.st_mtime > after)
393
393
            break;
394
 
        if (msg_verbose)
 
394
        if (msg_verbose > 1)
395
395
            msg_info("pausing to let %s cool down", path);
396
396
        doze(300000);
397
397
    }
459
459
                        DONT_FILTER, dict_eval_lookup, (char *) dict_name);
460
460
    if (status & MAC_PARSE_ERROR)
461
461
        msg_fatal("dictionary %s: macro processing error", dict_name);
462
 
    if (msg_verbose) {
 
462
    if (msg_verbose > 1) {
463
463
        if (strcmp(value, STR(buf)) != 0)
464
464
            msg_info("%s: expand %s -> %s", myname, value, STR(buf));
465
465
        else