~ubuntu-branches/ubuntu/saucy/syslog-ng/saucy

« back to all changes in this revision

Viewing changes to modules/afprog/afprog-plugin.c

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2011-11-15 08:48:02 UTC
  • mfrom: (26.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111115084802-n0jegdnjlxk0m26s
Tags: 3.3.1.dfsg-1ubuntu1
* debian/control: remove libsystemd-daemon-dev build-depends
* debian/rules: remove --with-systemdsystemunitdir from
  override_dh_auto_configure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  plugin_register(cfg, afprog_plugins, G_N_ELEMENTS(afprog_plugins));
47
47
  return TRUE;
48
48
}
 
49
 
 
50
const ModuleInfo module_info =
 
51
{
 
52
  .canonical_name = "afprog",
 
53
  .version = VERSION,
 
54
  .description = "The afprog module provides program source & destination drivers for syslog-ng.",
 
55
  .core_revision = SOURCE_REVISION,
 
56
  .plugins = afprog_plugins,
 
57
  .plugins_len = G_N_ELEMENTS(afprog_plugins),
 
58
};