Changeset 4466 for trunk/base


Ignore:
Timestamp:
Jan 5, 2004, 12:31:37 PM (20 years ago)
Author:
jkh
Message:

For now, and it fixes ethereal without breaking anything else so I think
it's a good fix, trap unreferenced options in options_proc_trace and simply
return normally when encountering one. The depends_lib-delete statement
in ethereal *is* working, it's just causing this error as a side-effect so
detect it here. Longer term, I'll continue to look into why it's happening
at all and clobber it at the source. This band-aid simply prevents it from
blowing us up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/base/src/port1.0/portutil.tcl

    r4456 r4466  
    179179    global option_procs
    180180    upvar $optionName optionValue
     181    if {![info exists option_procs($optionName)]} {
     182        return
     183    }
    181184    switch $op {
    182185        w {
Note: See TracChangeset for help on using the changeset viewer.