Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
e51ef4cc
Unverified
Commit
e51ef4cc
authored
Jun 19, 2019
by
IKEDA Soji
Committed by
GitHub
Jun 19, 2019
Browse files
Merge pull request #663 from ikedas/racke/pr/import-user-listname-output by ikedas
Spurious warnings for uninitialized values.
parents
3227e9d9
d986f5f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Sympa/User.pm
View file @
e51ef4cc
...
...
@@ -314,8 +314,8 @@ my %fingerprint_hashes = (
my
$fingerprint
=
Digest::MD5::
md5_hex
(
$pwd
);
my
$match
=
(
$fingerprint
eq
$salt
)
?
"
yes
"
:
"
no
";
$log
->
syslog
('
debug
',
"
md5: match
$match
salt
\"
$salt
\"
fingerprint
$fingerprint
"
);
$log
->
syslog
('
debug
',
'
md5: match %s salt \"%s\" fingerprint %s
',
$match
,
$salt
,
$fingerprint
);
return
$fingerprint
;
},
...
...
@@ -347,8 +347,8 @@ my %fingerprint_hashes = (
my
$fingerprint
=
bcrypt
(
$pwd
,
$salt
);
my
$match
=
(
$fingerprint
eq
$salt
)
?
"
yes
"
:
"
no
";
$log
->
syslog
('
debug
',
"
bcrypt: match
$match
salt
$salt
fingerprint
$fingerprint
"
);
$log
->
syslog
('
debug
',
'
bcrypt: match %s salt \"%s\" fingerprint %s
',
$match
,
$salt
,
$fingerprint
);
return
$fingerprint
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment