From 6bd1813692a713bba85ca404d64946844c23bb0a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 12 Nov 2004 18:21:17 +0000 Subject: [PATCH] Remove -1. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@308 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- src/backends/NetworkManagerDebian.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/NetworkManagerDebian.c b/src/backends/NetworkManagerDebian.c index 82b06525d2..04295f62ac 100644 --- a/src/backends/NetworkManagerDebian.c +++ b/src/backends/NetworkManagerDebian.c @@ -76,7 +76,7 @@ gboolean nm_system_device_run_dhcp (NMDevice *dev) * (for example, bad WEP key so it can't actually talk to the AP). */ iface = nm_device_get_iface (dev); - buf = g_strdup_printf ("/sbin/dhclient -1 -q -lf /var/lib/dhcp/dhclient-%s.leases -pf /var/run/dhclient-%s.pid -cf /etc/dhclient-%s.conf %s\n", iface, iface, iface, iface); + buf = g_strdup_printf ("/sbin/dhclient -q -lf /var/lib/dhcp/dhclient-%s.leases -pf /var/run/dhclient-%s.pid -cf /etc/dhclient-%s.conf %s\n", iface, iface, iface, iface); err = nm_spawn_process (buf); g_free (buf); return (err == 0);