Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / net / tcl-scotty / patches / patch-ac
blob9d32d00103ea392f4a10738945a8a9113f2fa3fe
1 $NetBSD: patch-ac,v 1.1.1.1 2000/09/07 17:38:46 jwise Exp $
3 Ensure we unset the global variable...
5 --- tkined/apps/ip_discover.tcl.orig    Fri Jun 12 09:23:35 1998
6 +++ tkined/apps/ip_discover.tcl Wed Sep  6 22:56:34 2000
7 @@ -56,7 +56,10 @@
8      foreach name {
9         nodes networks links ids trace mask fip name address gateways
10      } {
11 -       catch {unset $name}
12 +       catch {
13 +           global $name
14 +           unset $name
15 +       }
16      }
17  }