diff options
| author | fukachan <fukachan> | 2005-11-30 23:50:19 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2005-11-30 23:50:19 +0000 |
| commit | 549bb8470b596cc0bf36c00a11f70cabffc51f19 (patch) | |
| tree | 109550b2095cedc659a40a572f2079adb5d89f37 /fml/lib/FML/Process/Error.pm | |
| parent | ed51c5fb6cb32c0b4c401407ab83cfd584f575c6 (diff) | |
| download | fml8-549bb8470b596cc0bf36c00a11f70cabffc51f19.tar.gz fml8-549bb8470b596cc0bf36c00a11f70cabffc51f19.tar.bz2 fml8-549bb8470b596cc0bf36c00a11f70cabffc51f19.zip | |
use $curproc->credential()
Diffstat (limited to 'fml/lib/FML/Process/Error.pm')
| -rw-r--r-- | fml/lib/FML/Process/Error.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm index b8bf10d3..d1690c67 100644 --- a/fml/lib/FML/Process/Error.pm +++ b/fml/lib/FML/Process/Error.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004,2005 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Error.pm,v 1.53 2005/08/10 15:03:25 fukachan Exp $ +# $FML: Error.pm,v 1.54 2005/08/19 12:17:09 fukachan Exp $ # package FML::Process::Error; @@ -117,7 +117,8 @@ sub verify_request # set dummy sender to avoid unexpected error if ($maintainer) { - $curproc->{'credential'}->set( 'sender', $maintainer ); + my $cred = $curproc->credential(); + $cred->set( 'sender', $maintainer ); } else { $curproc->logerror("maintainer not defined."); |
