PATCH: Spelling fixups

According to my dictionary "Authentification" is not a real word.

Signed-off-by: Robert <rspier@pobox.com>
This commit is contained in:
Steve Kemp 2009-10-16 22:36:11 +01:00 committed by Robert
parent f2d4244cb0
commit d066479a77

View File

@ -42,7 +42,7 @@ sub SASL {
$session->respond(334, e64("Username:")); $session->respond(334, e64("Username:"));
$user = decode_base64(<STDIN>); $user = decode_base64(<STDIN>);
if ($user eq '*') { if ($user eq '*') {
$session->respond(501, "Authentification canceled"); $session->respond(501, "Authentication canceled");
return DECLINED; return DECLINED;
} }
} }
@ -51,7 +51,7 @@ sub SASL {
$passClear = <STDIN>; $passClear = <STDIN>;
$passClear = decode_base64($passClear); $passClear = decode_base64($passClear);
if ($passClear eq '*') { if ($passClear eq '*') {
$session->respond(501, "Authentification canceled"); $session->respond(501, "Authentication canceled");
return DECLINED; return DECLINED;
} }
} }
@ -68,7 +68,7 @@ sub SASL {
my $line = <STDIN>; my $line = <STDIN>;
if ( $line eq '*' ) { if ( $line eq '*' ) {
$session->respond( 501, "Authentification canceled" ); $session->respond( 501, "Authentication canceled" );
return DECLINED; return DECLINED;
} }
@ -82,7 +82,7 @@ sub SASL {
# Make sure that we have enough information to proceed # Make sure that we have enough information to proceed
unless ( $user && ($passClear || $passHash) ) { unless ( $user && ($passClear || $passHash) ) {
$session->respond(504, "Invalid authentification string"); $session->respond(504, "Invalid authentication string");
return DECLINED; return DECLINED;
} }