projects
/
bucardo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd1d776
)
Should be setting, not value
author
Ed Snajder
<ed.snajder@jivesoftware.com>
Sun, 29 Apr 2012 02:38:50 +0000
(22:38 -0400)
committer
Greg Sabino Mullane
<greg@endpoint.com>
Sun, 29 Apr 2012 02:38:50 +0000
(22:38 -0400)
bucardo
patch
|
blob
|
blame
|
history
diff --git
a/bucardo
b/bucardo
index 639b247aab027b79bda788182c8b6785ed319662..591f60a690653acfc022ad0c0ec1e426a14fefcf 100755
(executable)
--- a/
bucardo
+++ b/
bucardo
@@
-7926,7
+7926,7
@@
sub config {
}
for my $s (sort keys %$config) {
next if ! $all and ! grep { $s =~ /$_/i } @nouns;
- printf "%-*s = %s\n", $maxsize, $s, $config->{$s}{
value
};
+ printf "%-*s = %s\n", $maxsize, $s, $config->{$s}{
setting
};
}
exit 1;
}