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

« back to all changes in this revision

Viewing changes to modules/afuser/afuser-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:
41
41
  plugin_register(cfg, afuser_plugins, G_N_ELEMENTS(afuser_plugins));
42
42
  return TRUE;
43
43
}
 
44
 
 
45
const ModuleInfo module_info =
 
46
{
 
47
  .canonical_name = "afuser",
 
48
  .version = VERSION,
 
49
  .description = "The afuser module provides the usertty() destination for syslog-ng",
 
50
  .core_revision = SOURCE_REVISION,
 
51
  .plugins = afuser_plugins,
 
52
  .plugins_len = G_N_ELEMENTS(afuser_plugins),
 
53
};