network: Fix typo in NetworkManager version checking
The code is meant to work with NetworkManager of version 0.9.0+ or 0.8.992+ https://bugzilla.gnome.org/show_bug.cgi?id=733309
This commit is contained in:
parent
884bf3b2dc
commit
064cb89675
1 changed files with 1 additions and 1 deletions
|
@ -1325,7 +1325,7 @@ panel_check_network_manager_version (CcNetworkPanel *panel)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* is it too new or old */
|
/* is it too new or old */
|
||||||
if (major > 0 || major > 9 || (minor <= 8 && micro < 992)) {
|
if (major > 0 || minor > 9 || (minor <= 8 && micro < 992)) {
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
|
|
||||||
/* do modal dialog in idle so we don't block startup */
|
/* do modal dialog in idle so we don't block startup */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue