Changeset 32176

Show
Ignore:
Timestamp:
04/09/09 19:11:33 (4 years ago)
Author:
CL
Message:

not set よりnot foundだよなーと思って直した。missingとかも有りなのかな?

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • websites/perl-users.jp/html/modules/config_pit.html

    r32175 r32176  
    116116my $config = pit_get("example.com"); 
    117117die 'pit_get failed.' if !%$config; 
    118 my $username = $config->{username} or die 'username not set.'; 
    119 my $password = $config->{password} or die 'password not set.'; 
     118my $username = $config->{username} or die 'username not found.'; 
     119my $password = $config->{password} or die 'password not found.'; 
    120120print "username: $username, password: $password\n";</code></pre> 
    121121 
     
    143143        <hr /> 
    144144        <p><a href="/modern_introduction_perl/">目次へ</a></p> 
    145         <p>Last modified: $Date: 2009-04-09T018:40:00+09:00 $</p> 
     145        <p>Last modified: $Date: 2009-04-09T019:00:00+09:00 $</p> 
    146146    </body> 
    147147</html>