1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-21 13:28:08 +01:00

Added support for two more DHCP clients: pump and dhcpcd.

Added check when DHCP is run to determine what DHCP clients are available.
Fixed bug where sometimes wicd wouldn't reconnect automatically when a wired connection was lost.
Cleaned up a couple of comments.
This commit is contained in:
imdano
2008-02-13 13:08:15 +00:00
parent 1bebb0bae2
commit d7141a8b78
3 changed files with 70 additions and 8 deletions

2
gui.py
View File

@@ -1361,7 +1361,7 @@ class appGui:
if entry.checkboxStaticDNS.get_active() and \
not entry.checkboxGlobalDNS.get_active():
entlist.append(entry.txtDNS1)
# Only append addition dns entries if they're entered.
# Only append additional dns entries if they're entered.
for ent in [entry.txtDNS2, entry.txtDNS3]:
if ent.get_text() != "":
entlist.append(ent)