2005-06-23 Robert Love <rml@novell.com>

* src/NetworkManagerDevice.c: division in assignment was flipped.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@743 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love
2005-06-23 20:10:41 +00:00
committed by Robert Love
parent d1086fc48c
commit 6bb9f27dbf
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2005-06-23 Robert Love <rml@novell.com>
* src/NetworkManagerDevice.c: division in assignment was flipped.
2005-06-23 David Zeuthen <david@fubar.dk>
* gnome/applet/vpn-password-dialog.c (child_stdout_data_cb): Send a

View File

@@ -2348,7 +2348,7 @@ static gboolean nm_device_wireless_wait_for_link (NMDevice *dev, const char *ess
* also want the maximum to be based on what the card */
const guint delay = 30;
const guint required_tries = 10;
const guint min_delay = 2 * (required_tries / delay);
const guint min_delay = 2 * (delay / required_tries);
g_return_val_if_fail (dev != NULL, FALSE);