mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-13 10:40:40 +02:00
2005-06-15 Dan Williams <dcbw@redhat.com>
* src/backends/NetworkManagerSuSE.c src/backends/NetworkManagerRedHat.c src/backends/NetworkManagerDebian.c - (set_ip4_config_from_resolv_conf): Fix typo I made, '==' -> '=' git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@672 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
c37da06407
commit
ebf1265441
4 changed files with 10 additions and 3 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2005-06-15 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/backends/NetworkManagerSuSE.c
|
||||
src/backends/NetworkManagerRedHat.c
|
||||
src/backends/NetworkManagerDebian.c
|
||||
- (set_ip4_config_from_resolv_conf): Fix typo I made, '==' -> '='
|
||||
|
||||
2005-06-15 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/backends/NetworkManagerDebian.c
|
||||
|
|
|
|||
|
|
@ -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