Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9750/Proxy
Modified Files:
Proxy.pm
Log Message:
Sorry. My last commit broke this module.
Now make the test in service conform to the initialization.
Index: Proxy.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/Proxy.pm,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -d -r1.60 -r1.61
*** Proxy.pm 22 May 2005 12:12:01 -0000 1.60
--- Proxy.pm 23 May 2005 10:42:50 -0000 1.61
***************
*** 175,179 ****
my ( $self ) = @_;
! if ( $self->{api_session__} ne '' ) {
$self->classifier_()->release_session_key( $self->{api_session__} );
}
--- 175,179 ----
my ( $self ) = @_;
! if ( defined $self->{api_session__} ne '' ) {
$self->classifier_()->release_session_key( $self->{api_session__} );
}
***************
*** 235,239 ****
binmode( $client );
! if ( !defined( $self->{api_session__} ) ) {
$self->{api_session__} = $self->classifier_()->get_administrator_session_key();
}
--- 235,239 ----
binmode( $client );
! if ( $self->{api_session__} eq '' ) {
$self->{api_session__} = $self->classifier_()->get_administrator_session_key();
}
|