1
0
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:
Tim Potter
2004-05-09 10:55:54 +00:00
committed by Gerald (Jerry) Carter
parent 0221717a62
commit 1f2fa49b20

View File

@ -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})] ";
}
}