summaryrefslogtreecommitdiff
path: root/lib/sbin/ImpParamConsistency.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-16 15:08:29 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-16 15:08:29 +0000
commite86f82a6f4397fd82dd8ec052abe7fd25897a490 (patch)
tree130a378fb730c2ba1ae155a2b37e19f49db08d0b /lib/sbin/ImpParamConsistency.pl
parent0c8f557d19b8ffc9d422dd8d06e276f8b0cc6648 (diff)
Changed to reporting errors with CST_error
git-svn-id: http://svn.cactuscode.org/flesh/trunk@716 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ImpParamConsistency.pl')
-rw-r--r--lib/sbin/ImpParamConsistency.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/sbin/ImpParamConsistency.pl b/lib/sbin/ImpParamConsistency.pl
index e1fe5928..c3871af3 100644
--- a/lib/sbin/ImpParamConsistency.pl
+++ b/lib/sbin/ImpParamConsistency.pl
@@ -61,12 +61,14 @@ sub CheckImpParamConsistency
}
else
{
- print STDERR "Thorn $thorn attempted to EXTEND non-restricted parameter $parameter from $friend\n";
+ $message = "Thorn $thorn attempted to EXTEND non-restricted parameter $parameter from $friend";
+ &CST_error(0,$message,__LINE__,__FILE__);
}
}
else
{
- print STDERR "Thorn $thorn attempted to EXTEND non-existant parameter $parameter from $friend\n";
+ $message = "Thorn $thorn attempted to EXTEND non-existant parameter $parameter from $friend";
+ &CST_error(0,$message,__LINE__,__FILE__);
}
}
}