procfs: whitespace/indendation cleanup

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-02-19 15:35:06 +01:00
parent ff8d3b1d7a
commit dc00c0529d

View File

@ -378,6 +378,7 @@ sub decode_mount {
sub parse_mounts {
my ($mounts) = @_;
my $mntent = [];
while ($mounts =~ /^\s*([^#].*)$/gm) {
# lines from the file are encoded so we can just split at spaces
@ -386,11 +387,14 @@ sub parse_mounts {
# in glibc's parser frequency and pass seem to be optional
$freq = $1 if $opts =~ s/\s+(\d+)$//;
$passno = $1 if $opts =~ s/\s+(\d+)$//;
push @$mntent, [decode_mount($what),
push @$mntent, [
decode_mount($what),
decode_mount($dir),
decode_mount($fstype),
decode_mount($opts),
$freq, $passno];
$freq,
$passno,
];
}
return $mntent;
}