From: Richard Purdie Date: Tue, 26 May 2009 09:19:27 +0000 (+0100) Subject: Fix dhclient option order to avoid errors X-Git-Tag: maemo-0.19~19 X-Git-Url: http://vcs.maemo.org/git/?p=connman;a=commitdiff_plain;h=8efc7bf52f66a144875a5d32548d496431a78360 Fix dhclient option order to avoid errors When dhclient is called, it expects to see the interface name before any -n option. If this doesn't happen it will just print usage information. This patch changes the dhclient option order so the interface comes before -n and works with the standard dhcp 4.1.0 source. --- diff --git a/plugins/dhclient.c b/plugins/dhclient.c index 432878a..ca9b621 100644 --- a/plugins/dhclient.c +++ b/plugins/dhclient.c @@ -165,18 +165,18 @@ static int dhclient_probe(struct connman_element *element) argv[0] = DHCLIENT; argv[1] = "-d"; argv[2] = "-q"; - argv[3] = "-n"; - argv[4] = "-e"; - argv[5] = address; - argv[6] = "-pf"; - argv[7] = pidfile; - argv[8] = "-lf"; - argv[9] = leases; - argv[10] = "-cf"; - argv[11] = config; - argv[12] = "-sf"; - argv[13] = script; - argv[14] = task->ifname; + argv[3] = "-e"; + argv[4] = address; + argv[5] = "-pf"; + argv[6] = pidfile; + argv[7] = "-lf"; + argv[8] = leases; + argv[9] = "-cf"; + argv[10] = config; + argv[11] = "-sf"; + argv[12] = script; + argv[13] = task->ifname; + argv[14] = "-n"; argv[15] = NULL; envp[0] = NULL;