summaryrefslogtreecommitdiffstats
path: root/libipulog
diff options
context:
space:
mode:
authorlaforge <laforge>2000-08-11 09:56:42 +0000
committerlaforge <laforge>2000-08-11 09:56:42 +0000
commitca2df0482c9d82dd3db1853d27e072dc4b1d5621 (patch)
treedcf4c9dbb011b09b3f41544843432c995d338aac /libipulog
parent36b5562a3fa5f7e3f5990567c0c7d5b5b401dd1a (diff)
Various fixes due to Jan Echternachs comments on the mailinglist.
Diffstat (limited to 'libipulog')
-rw-r--r--libipulog/libipulog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libipulog/libipulog.c b/libipulog/libipulog.c
index 5d111f6..e5e6d2f 100644
--- a/libipulog/libipulog.c
+++ b/libipulog/libipulog.c
@@ -1,5 +1,5 @@
/*
- * libipulog.c, $Revision$
+ * libipulog.c, $Revision: 1.2 $
*
* netfilter ULOG userspace library.
*
@@ -9,7 +9,7 @@
* This library is still under development, so be aware of sudden interface
* changes
*
- * $Id$
+ * $Id: libipulog.c,v 1.2 2000/07/31 14:52:46 laforge Exp $
*/
#include <stdlib.h>
@@ -146,7 +146,7 @@ struct ipulog_handle *ipulog_create_handle(unsigned int gmask)
}
memset(&h->local, 0, sizeof(struct sockaddr_nl));
h->local.nl_family = AF_NETLINK;
- h->local.nl_pid = getpid();
+ h->local.nl_pid = 0;
h->local.nl_groups = gmask;
status = bind(h->fd, (struct sockaddr *)&h->local, sizeof(h->local));
if (status == -1)