summaryrefslogtreecommitdiffstats
path: root/src/libnetfilter_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnetfilter_log.c')
-rw-r--r--src/libnetfilter_log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libnetfilter_log.c b/src/libnetfilter_log.c
index 567049c..339f286 100644
--- a/src/libnetfilter_log.c
+++ b/src/libnetfilter_log.c
@@ -182,10 +182,10 @@ struct nfnl_handle *nflog_nfnlh(struct nflog_handle *h)
*
* Here's a little code snippet that binds to the group 100:
* \verbatim
- printf("binding this socket to group 0\n");
- qh = nflog_bind_group(h, 0);
+ printf("binding this socket to group 100\n");
+ qh = nflog_bind_group(h, 100);
if (!qh) {
- fprintf(stderr, "no handle for grup 0\n");
+ fprintf(stderr, "no handle for group 100\n");
exit(1);
}