summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-12-07 11:50:57 +0000
committerfukachan <fukachan>2005-12-07 11:50:57 +0000
commit7d1e13acc2da0208b8af4f56de838c77c24a6829 (patch)
tree695ba041e93e0a72904d24ce51cc7d53883451eb /fml/doc/ja/tutorial
parent4c4f0c11265303446ced83756f6afe770fb24037 (diff)
downloadfml8-7d1e13acc2da0208b8af4f56de838c77c24a6829.tar.gz
fml8-7d1e13acc2da0208b8af4f56de838c77c24a6829.tar.bz2
fml8-7d1e13acc2da0208b8af4f56de838c77c24a6829.zip
use $curproc->logerror() instead of LogError()
Diffstat (limited to 'fml/doc/ja/tutorial')
-rw-r--r--fml/doc/ja/tutorial/customize/case_studies.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/doc/ja/tutorial/customize/case_studies.sgml b/fml/doc/ja/tutorial/customize/case_studies.sgml
index 3119d8ca..f3ff39c2 100644
--- a/fml/doc/ja/tutorial/customize/case_studies.sgml
+++ b/fml/doc/ja/tutorial/customize/case_studies.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: case_studies.sgml,v 1.9 2005/08/03 13:45:10 fukachan Exp $
+ $FML: case_studies.sgml,v 1.10 2005/11/30 23:42:31 fukachan Exp $
-->
@@ -116,7 +116,7 @@ $command_verify_request_end_hook = q{
unless ($from =~ /\@example\.co\.jp/i) {
$curproc->stop_this_process();
- LogError("deny command request from $from");
+ $curproc->logerror("deny command request from $from");
}
};
</screen>