in reply to Dial-In (RAS) Settings and Boolean Values

You said:
my $status = 'TRUE';
(snip)
$oContainer->{msNPAllowDialin} = $status;
I suggest instead:
my $status = undef;
(snip)
$oContainer->{msNPAllowDialin} = $status;
Read the perldoc on the undef function: undef

Replies are listed 'Best First'.
Re: Re: Dial-In (RAS) Settings and Boolean Values
by jds (Acolyte) on May 06, 2003 at 19:45 UTC
    The comment was to try:
    my $status = undef;
    I tried this, as well as:
    undef $status;
    and
    $oContainer->{msNPAllowDialin} = undef;
    None of these things change the current setting no matter what the current setting is. I can't seem to make the msNPAllowDialin function accept a value of undef in any of it's forms.
    John