Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Dial-In (RAS) Settings and Boolean Values

by jkahn (Friar)
on May 06, 2003 at 18:16 UTC ( [id://255975]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://255975]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 03:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found