Hi,

I made a rather important change in the sources, for anyone using
separate virtual interpreters, going from:

        Tcl_GetBoolean (NULL, var, &rsc->separate_virtual_interps);

(which will always fail) to

        Tcl_GetBoolean (NULL, val, &rsc->separate_virtual_interps);

One little nasty 'r'... doh!

Also, I have another question for Damon and Karl.  Is the else on about
line 949 doing the right thing?

    .....
    } else if( STREQU( var, "UploadFilesToVar" ) ) {
        Tcl_GetBoolean (NULL, val, &rsc->upload_files_to_var);
    } else if( STREQU( var, "SeparateVirtualInterps" ) ) {
        Tcl_GetBoolean (NULL, val, &rsc->separate_virtual_interps);
    } else {
        string = Rivet_SetScript( cmd->pool, rsc, var, val);
    }

Shouldn't it be saying "no way dude, you didn't give me a valid
configuration directive!".  Actually, looking deeper, it's
Rivet_SetScript that ought to barf up a hairball.

Ciao,
-- 
David N. Welton
- http://www.dedasys.com/davidw/

Apache, Linux, Tcl Consulting
- http://www.dedasys.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to