summaryrefslogtreecommitdiff
path: root/lib/sbin/ImpParamConsistency.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-06-07 14:43:58 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-06-07 14:43:58 +0000
commitb317816e18643432468b558a08bc76b001fc024e (patch)
tree7b3c8ad1d2b002875196a68ef67d21ff13379f71 /lib/sbin/ImpParamConsistency.pl
parentac264bb94e2dc52e373b0cc8a699d8acd922b510 (diff)
Improved error messages
Fixes Cactus/1530 git-svn-id: http://svn.cactuscode.org/flesh/trunk@3235 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ImpParamConsistency.pl')
-rw-r--r--lib/sbin/ImpParamConsistency.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/ImpParamConsistency.pl b/lib/sbin/ImpParamConsistency.pl
index aa511368..d2570ae3 100644
--- a/lib/sbin/ImpParamConsistency.pl
+++ b/lib/sbin/ImpParamConsistency.pl
@@ -75,13 +75,13 @@ sub CheckImpParamConsistency
}
else
{
- $message = "Thorn $thorn attempted to EXTEND or USE non-restricted parameter $realname from $friend";
+ $message = "Thorn \"$thorn\" attempted to EXTEND or USE non-restricted parameter \"$realname\" from implementation \"$friend\"";
&CST_error(0,$message,"",__LINE__,__FILE__);
}
}
else
{
- $message = "Thorn $thorn attempted to EXTEND or USE non-existent parameter $realname from $friend";
+ $message = "Thorn \"$thorn\" attempted to EXTEND or USE non-existent parameter \"$realname\" from implementation \"$friend\"";
&CST_error(0,$message,"",__LINE__,__FILE__);
}
}