summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-27 01:26:32 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-27 01:26:32 +0000
commit16d411b2836547e701948e4b7f48b34b4ca90a18 (patch)
tree7ed252cf0efe6f6375b53e6c66f9b0f869831a37 /lib
parent3b7c366012757ac593560198845ca18eac0198db (diff)
Fixed a bug when there was more than one friend or ancestor to an
implementation. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@359 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/sbin/GridFuncStuff.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/GridFuncStuff.pl b/lib/sbin/GridFuncStuff.pl
index 2fa74934..f386dc39 100644
--- a/lib/sbin/GridFuncStuff.pl
+++ b/lib/sbin/GridFuncStuff.pl
@@ -168,11 +168,11 @@ sub GetThornArguments
if($block eq "PUBLIC")
{
- @other_imps = $interface_database{"IMPLEMENTATION \U$my_imp\E ANCESTORS"};
+ @other_imps = split(" ",$interface_database{"IMPLEMENTATION \U$my_imp\E ANCESTORS"});
}
elsif($block eq "PROTECTED")
{
- @other_imps = $interface_database{"IMPLEMENTATION \U$my_imp\E FRIENDS"};
+ @other_imps = split(" ", $interface_database{"IMPLEMENTATION \U$my_imp\E FRIENDS"});
}
elsif($block eq "PRIVATE")
{