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

« back to all changes in this revision

Viewing changes to src/master/trigger_server.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:
74
74
/*      global Postfix configuration file. Tables are loaded in the
75
75
/*      order as specified, and multiple instances of the same type
76
76
/*      are allowed.
 
77
/* .IP "MAIL_SERVER_NBOOL_TABLE (CONFIG_NBOOL_TABLE *)"
 
78
/*      A table with configurable parameters, to be loaded from the
 
79
/*      global Postfix configuration file. Tables are loaded in the
 
80
/*      order as specified, and multiple instances of the same type
 
81
/*      are allowed.
77
82
/* .IP "MAIL_SERVER_PRE_INIT (void *(char *service_name, char **argv))"
78
83
/*      A pointer to a function that is called once
79
84
/*      by the skeleton after it has read the global configuration file
573
578
        case MAIL_SERVER_NINT_TABLE:
574
579
            get_mail_conf_nint_table(va_arg(ap, CONFIG_NINT_TABLE *));
575
580
            break;
 
581
        case MAIL_SERVER_NBOOL_TABLE:
 
582
            get_mail_conf_nbool_table(va_arg(ap, CONFIG_NBOOL_TABLE *));
 
583
            break;
576
584
        case MAIL_SERVER_PRE_INIT:
577
585
            pre_init = va_arg(ap, MAIL_SERVER_INIT_FN);
578
586
            break;