From 59c3474b3dc2f3e5827d1d98e4e6af7206b8ae67 Mon Sep 17 00:00:00 2001 From: Miguel Di Ciurcio Filho Date: Wed, 23 Feb 2011 11:13:12 -0300 Subject: [PATCH] Add missing argument in rtnl_link_change example Signed-off-by: Miguel Di Ciurcio Filho --- lib/route/link.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()