mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 19:30:07 +01:00
Fix compile warning/error
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@673 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
ebf1265441
commit
c594bc261f
3 changed files with 3 additions and 3 deletions
|
|
@ -460,7 +460,7 @@ static void set_ip4_config_from_resolv_conf (const char *filename, NMIP4Config *
|
|||
continue;
|
||||
|
||||
/* Allow space-separated search domains */
|
||||
if (split_searches = g_strsplit (searches, " ", 0))
|
||||
if ((split_searches = g_strsplit (searches, " ", 0)))
|
||||
{
|
||||
int m, srch_len;
|
||||
|
||||
|
|
|
|||
|
|
@ -419,7 +419,7 @@ static void set_ip4_config_from_resolv_conf (const char *filename, NMIP4Config *
|
|||
continue;
|
||||
|
||||
/* Allow space-separated search domains */
|
||||
if (split_searches = g_strsplit (searches, " ", 0))
|
||||
if ((split_searches = g_strsplit (searches, " ", 0)))
|
||||
{
|
||||
int m, srch_len;
|
||||
|
||||
|
|
|
|||
|
|
@ -384,7 +384,7 @@ static void set_ip4_config_from_resolv_conf (const char *filename, NMIP4Config *
|
|||
continue;
|
||||
|
||||
/* Allow space-separated search domains */
|
||||
if (split_searches = g_strsplit (searches, " ", 0))
|
||||
if ((split_searches = g_strsplit (searches, " ", 0)))
|
||||
{
|
||||
int m, srch_len;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue