summaryrefslogtreecommitdiff
path: root/lib/sbin
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2007-04-18 18:10:55 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2007-04-18 18:10:55 +0000
commitf4093eb1aeacd91454abd938a021b64409878d45 (patch)
tree148f5383edb5a34655d7bb0b89644196d39f5697 /lib/sbin
parent89bc5ecb0d19c99e245d2caa6f341c0866ce90aa (diff)
Use "cctk_unlikely_dummy_name" instead of "dummy" when sorting thorns.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4417 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin')
-rw-r--r--lib/sbin/CST6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sbin/CST b/lib/sbin/CST
index 637b50f1..17b6abe3 100644
--- a/lib/sbin/CST
+++ b/lib/sbin/CST
@@ -6,7 +6,7 @@
# @desc
# Parses the the configuration files for thorns.
# @enddesc
-# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/sbin/CST,v 1.76 2005-09-25 20:05:31 schnetter Exp $
+# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/sbin/CST,v 1.77 2007-04-18 18:10:55 schnetter Exp $
#@@*/
# Global parameter to track the number of errors from the CST
@@ -586,7 +586,7 @@ sub TopoSort
# otherwise we'll get a cyclic list later in the topological sort
$uses_thorns .= "$thorn $_\n" if ($thorn ne $_);
}
- $uses_thorns = "dummy $thorn\n" if (! $uses_thorns);
+ $uses_thorns = "cctk_unlikely_dummy_name $thorn\n" if (! $uses_thorns);
$data .= $uses_thorns;
}
@@ -607,7 +607,7 @@ sub TopoSort
&CST_error (0, "Tsort script dumped core\n" ) if $dumped_core;
$data = join(' ', split("\n", $data));
- $data =~ s/dummy//;
+ $data =~ s/cctk_unlikely_dummy_name//;
$data =~ s/ / /;
}