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:
Dan Williams
2005-06-15 19:35:37 +00:00
parent c37da06407
commit ebf1265441
4 changed files with 10 additions and 3 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;