version 1.434, 2009/12/03 17:43:19
|
version 1.436, 2010/01/31 04:31:00
|
Line 3129 sub dump_with_regexp {
|
Line 3129 sub dump_with_regexp {
|
if ($clientversion =~ /^(\d+)\.(\d+)$/) { |
if ($clientversion =~ /^(\d+)\.(\d+)$/) { |
my $major = $1; |
my $major = $1; |
my $minor = $2; |
my $minor = $2; |
next if (($major < 2) || (($major == 2) && ($minor < 10))); |
next if (($major < 2) || (($major == 2) && ($minor < 9))); |
} |
} |
} |
} |
} |
} |
Line 6553 sub rewrite_password_file {
|
Line 6553 sub rewrite_password_file {
|
|
|
# Returns the authorization type or nouser if there is no such user. |
# Returns the authorization type or nouser if there is no such user. |
# |
# |
sub get_auth_type |
sub get_auth_type { |
{ |
|
|
|
my ($domain, $user) = @_; |
my ($domain, $user) = @_; |
|
|
Debug("get_auth_type( $domain, $user ) \n"); |
Debug("get_auth_type( $domain, $user ) \n"); |