in network- and custom- config sections not beginning with a <TAB>
character, now it is allowed for entries in those sections to start
right at column 0.
Remove another Tk polluting line from exec.tcl
Bug found by:
Submitted by:
Requested by:
Reviewed by:
Approved by:
Obtained from:
foreach zline [split $value {\r}] {
if { [string index "$zline" 0] == " " } {
set zline [string replace "$zline" 0 0]
- lappend cfg $zline
}
+ lappend cfg $zline
}
+ set cfg [lrange $cfg 1 [expr [llength $cfg] - 2]]
lappend $object "network-config {$cfg}"
}
custom-enabled {
foreach zline [split $value {\r}] {
if { [string index "$zline" 0] == " " } {
set zline [string replace "$zline" 0 0]
- lappend cfg $zline
}
+ lappend cfg $zline
}
+ set cfg [lrange $cfg 1 [expr [llength $cfg] - 2]]
lappend $object "custom-config {$cfg}"
}
iconcoords {
catch { nexec rm -f /usr/local/xorp/config.boot }
catch { nexec mv /etc/resolv.conf.bak /etc/resolv.conf }
statline "Cleanup completed in [expr [clock seconds] - $t_start] seconds."
- .c config -cursor left_ptr
}