summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-09-23 21:33:17 -0500
committerJesse Luehrs <doy@tozt.net>2012-09-23 21:49:37 -0500
commit0280b6f0cbcceddb652766453ecefa9e8d68f969 (patch)
tree179799df987b340039c930ba2f3cc29480889ff1 /bin
parentf7a6f59952320ec0ec247e1fe7ffda990757d415 (diff)
downloadconf-0280b6f0cbcceddb652766453ecefa9e8d68f969.tar.gz
conf-0280b6f0cbcceddb652766453ecefa9e8d68f969.zip
need to also check floating_nodes here
Diffstat (limited to 'bin')
-rwxr-xr-xbin/status2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/status b/bin/status
index 8b39c93..44abfba 100755
--- a/bin/status
+++ b/bin/status
@@ -41,7 +41,7 @@ sub find {
return $t;
}
- for my $subtree (@{ $t->{nodes} }) {
+ for my $subtree (@{ $t->{nodes} }, @{ $t->{floating_nodes} }) {
my $found = find($subtree);
return $found if $found;
}