summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Di Ciurcio Filho <miguel.filho@gmail.com>2011-02-23 11:13:12 -0300
committerThomas Graf <tgraf@suug.ch>2011-03-16 13:49:08 +0100
commit59c3474b3dc2f3e5827d1d98e4e6af7206b8ae67 (patch)
treea89b67d8b8ca195428013204708507d51389c714
parentd8d67c0a4c348837ed3c3f8377b1f8a4e5574f5f (diff)
downloadlibnl-59c3474b3dc2f3e5827d1d98e4e6af7206b8ae67.tar.gz
Add missing argument in rtnl_link_change example
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
-rw-r--r--lib/route/link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/route/link.c b/lib/route/link.c
index 00c9781..f9039a1 100644
--- a/lib/route/link.c
+++ b/lib/route/link.c
@@ -112,7 +112,7 @@
* // Two ways exist to commit this change request, the first one is to
* // build the required netlink message and send it out in one single
* // step:
- * rtnl_link_change(sk, old, request);
+ * rtnl_link_change(sk, old, request, 0);
*
* // An alternative way is to build the netlink message and send it
* // out yourself using nl_send_auto_complete()