Changeset 853

Show
Ignore:
Timestamp:
02/11/09 21:57:11 (10 months ago)
Author:
ykerherve
Message:

Fixed typo in optional

Location:
trunk/DJabberd
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/DJabberd/lib/DJabberd/SASL.pm

    r843 r853  
    4343} 
    4444 
    45 sub is_optional { return $_->[0]->{optional} ? 1 : 0 } 
     45sub is_optional { return $_[0]->{optional} ? 1 : 0 } 
    4646 
    4747sub mechanisms { die "implement" } 
  • trunk/DJabberd/t/lib/djabberd-test.pl

    r850 r853  
    260260            DJabberd::SASL::AuthenSASL->new( 
    261261                mechanisms => "LOGIN PLAIN DIGEST-MD5", 
    262                 optional   => "yes" 
     262                optional   => "yes", 
    263263            ), 
    264264            ];