Use the right group number in nflog_bind_group example. Signed-off-by: Jeremy Sowden <jeremy@xxxxxxxxxx> --- src/libnetfilter_log.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libnetfilter_log.c b/src/libnetfilter_log.c index 567049ccfb37..339f286f36bc 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); } -- 2.33.0