Kosmetik.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 10 Jan 2008 07:20:08 +0000 (07:20 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 10 Jan 2008 07:20:08 +0000 (07:20 +0000)
SL/Auth.pm

index 1d2f36f..96514f1 100644 (file)
@@ -92,12 +92,12 @@ sub _read_auth_config {
 sub authenticate_root {
   $main::lxdebug->enter_sub();
 
-  my $self          = shift;
-  my $password      = shift;
-  my $is_crypted    = shift;
+  my $self           = shift;
+  my $password       = shift;
+  my $is_crypted     = shift;
 
-  $password         = crypt $password, 'ro' if (!$password || !$is_crypted);
-  my $admin_password   = crypt "$self->{admin_password}", 'ro';
+  $password          = crypt $password, 'ro' if (!$password || !$is_crypted);
+  my $admin_password = crypt "$self->{admin_password}", 'ro';
 
   $main::lxdebug->leave_sub();