~ubuntu-branches/ubuntu/feisty/syslog-ng/feisty-security

« back to all changes in this revision

Viewing changes to src/afunix.c

  • Committer: Bazaar Package Importer
  • Author(s): SZALAY Attila
  • Date: 2006-10-25 22:06:48 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20061025220648-tv5ow8see2745huo
Tags: upstream-2.0rc3
ImportĀ upstreamĀ versionĀ 2.0rc3

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
  AFUnixDestDriver *self = g_new0(AFUnixDestDriver, 1);
111
111
  
112
112
  afsocket_dd_init_instance(&self->super, &self->sock_options, flags);
113
 
  self->super.bind_addr = NULL;
 
113
  self->super.bind_addr = g_sockaddr_unix_new(NULL);
114
114
  self->super.dest_addr = g_sockaddr_unix_new(filename);
115
115
  return &self->super.super;
116
116
}