1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Unify file encodings to UTF8

This commit is contained in:
Lars Kruse 2020-08-25 15:53:00 +02:00
parent 3674882662
commit 3bc9396918
21 changed files with 24 additions and 24 deletions

View file

@ -13,7 +13,7 @@
# Modif pour OpenBSD
#
# Revision 1.6 2007/03/02 07:52:52 cvserver
# pas LISTEN pour les IPs utilisées (en cas de *:389)
# pas LISTEN pour les IPs utilisées (en cas de *:389)
#
# Revision 1.5 2007/03/01 16:06:53 cvserver
# corrections:

View file

@ -126,7 +126,7 @@ sub save_data {
# Push the hash values on to the array
foreach ( keys %$hashref ) {
push @save_vector, $_ . '¬' . $hashref->{$_};
push @save_vector, $_ . '¬' . $hashref->{$_};
}
$::logger->info(
@ -148,7 +148,7 @@ sub load_data {
my $hashref;
foreach (@save_vector) {
my ( $key, $value ) = split /¬/;
my ( $key, $value ) = split /¬/;
$hashref->{$key} = $value;
}
my $force_save = 0;