rpms/dhcp/devel dhcp-3.0.3-bz181482.patch,NONE,1.1

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Feb 14 18:20:29 UTC 2006


Author: jvdias

Update of /cvs/dist/rpms/dhcp/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv14989

Added Files:
	dhcp-3.0.3-bz181482.patch 
Log Message:
fix bug 181482: dhclient-script not updating resolv.conf on RENEW ($new_domain_servers -> $new_domain_name_servers !)

dhcp-3.0.3-bz181482.patch:
 linux |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

--- NEW FILE dhcp-3.0.3-bz181482.patch ---
--- dhcp-3.0.3/client/scripts/linux.bz181482	2006-02-14 12:51:33.000000000 -0500
+++ dhcp-3.0.3/client/scripts/linux	2006-02-14 12:53:31.000000000 -0500
@@ -45,10 +45,10 @@
       return 
   fi
 
-  if [ x$reason == xRENEW ]; then 
-      if [ "$new_domain_name" == "$old_domain_name" ] && [ "$new_domain_servers" == "$old_domain_servers" ]; then
-	  return
-      fi
+  if [ x$reason == xRENEW ] &&
+     [ "$new_domain_name" == "$old_domain_name" ] && 
+     [ "$new_domain_name_servers" == "$old_domain_name_servers" ]; then
+      return;
   fi
 
   if [ -n "$new_domain_name" ] || [ -n "$new_domain_name_servers" ]; then




More information about the fedora-cvs-commits mailing list