Hello,
I have pulled down and installed the latest version of
TiK from the CVS tree as of 03-29-2001. After starting
tik and logging in ... The following error messages
keep popping up in the shell where I started tik. I am
not sure whats casuing them to pop in there but here
they are ...
retreverva:can't read "remoteadmin::info(auth)": no
such variable
while executing
"lsearch $remoteadmin::info(auth) $cname"
(procedure "remoteadmin::UPDATE_BUDDY" line 4)
invoked from within
"$func $connName $user $online $evil $signon $idle
$uclass"
(procedure "scmd_UPDATE_BUDDY" line 14)
invoked from within
"scmd_$cmd $name $data"
retreverva:can't read "remoteadmin::info(auth)": no
such variable
while executing
"lsearch $remoteadmin::info(auth) $cname"
(procedure "remoteadmin::UPDATE_BUDDY" line 4)
invoked from within
"$func $connName $user $online $evil $signon $idle
$uclass"
(procedure "scmd_UPDATE_BUDDY" line 14)
invoked from within
"scmd_$cmd $name $data"
Logged In: YES
user_id=569088
this error is coming from the "UPDATE_BUDDY" proc in
"components/remoteadmin.tcl"...
a quick "fix" i found was to comment lines 114-119 of that
file... like so:
proc UPDATE_BUDDY {name user online evil signon idle
uclass} {
# set cname [normalize $user]
# if {($online != "T") && ($cname != $::NSCREENNAME)}
{
# if {[set index [lsearch $remoteadmin::info(auth)
$cname]] != -1} {
# set remoteadmin::info(auth) [lreplace
$remoteadmin::info(auth) $
index $index]
# }
# }
}
it's probably not the best solution... but since this wasn't
actually
getting "done" before... now at least the error of it's
failure is
gone as well... :)
hope that helps...
[simoN]