mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
r604: Better dumping of in,out,ref properties.
(This used to be commit 209f5a25a9
)
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
0221717a62
commit
1f2fa49b20
@ -18,6 +18,18 @@ sub DumpProperties($)
|
||||
|
||||
foreach my $d ($props) {
|
||||
foreach my $k (keys %{$d}) {
|
||||
if ($k eq "in") {
|
||||
$res .= "[in] ";
|
||||
next;
|
||||
}
|
||||
if ($k eq "out") {
|
||||
$res .= "[out] ";
|
||||
next;
|
||||
}
|
||||
if ($k eq "ref") {
|
||||
$res .= "[ref] ";
|
||||
next;
|
||||
}
|
||||
$res .= "[$k($d->{$k})] ";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user