From 335a213a480714b161a2233292cf2b8b3128bd7f Mon Sep 17 00:00:00 2001 From: Glenn Proctor <gp1@sanger.ac.uk> Date: Thu, 14 Apr 2005 08:34:20 +0000 Subject: [PATCH] pass->password in db initialisation --- misc-scripts/xref_mapping/xref_mapper.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc-scripts/xref_mapping/xref_mapper.pl b/misc-scripts/xref_mapping/xref_mapper.pl index 37c7ce0ce5..bbb6278c80 100644 --- a/misc-scripts/xref_mapping/xref_mapper.pl +++ b/misc-scripts/xref_mapping/xref_mapper.pl @@ -81,8 +81,8 @@ if(defined($xref_hash{host})){ $host = $xref_hash{'host'}; $user = $xref_hash{'user'}; $dbname = $xref_hash{'dbname'}; - if(defined($xref_hash{'pass'})){ - $pass = $xref_hash{'pass'}; + if(defined($xref_hash{'password'})){ + $pass = $xref_hash{'password'}; } else{ $pass = ''; @@ -132,8 +132,8 @@ if(defined($species_hash{'species'})){ $host = $species_hash{'host'}; $user = $species_hash{'user'}; $dbname = $species_hash{'dbname'}; - if(defined($species_hash{'pass'})){ - $pass = $species_hash{'pass'}; + if(defined($species_hash{'password'})){ + $pass = $species_hash{'password'}; } else{ $pass = ''; -- GitLab