From 993d9a06d62752c6966fa5752557e3bc09c26dc3 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Wed, 17 Jul 2019 09:51:07 +0200 Subject: [PATCH] Fix missing closing curly bracket --- zmldapsync/zmldapsync.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/zmldapsync/zmldapsync.pl b/zmldapsync/zmldapsync.pl index 4e433fd..924f407 100644 --- a/zmldapsync/zmldapsync.pl +++ b/zmldapsync/zmldapsync.pl @@ -761,6 +761,7 @@ sub ldap2hashref { } else { $return->{unidecode( lc $entry->get_value($key) )}->{$attr} = ( scalar @values == 1 ) ? \@values : $values[0]; + } } } return $return;