~ubuntu-branches/ubuntu/precise/libio-socket-ssl-perl/precise

« back to all changes in this revision

Viewing changes to t/sessions.t

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ragwitz
  • Date: 2005-08-11 19:33:45 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050811193345-vt5akfba47n86u5z
Tags: 0.97-1
* New upstream version.
* New Maintainer (Closes: #322099).
* Changed Section from interpreters to perl because it's more accurate.
* Removed dependency on openssl. I don't see why it's needed. Net::SSLeay is
  used as the interface to libssl.
* Removed Conflicts: and Replaces: libnet-socketssl-perl. It's not in the
  archive anymore.
* Using debhelper 4.
* Updated standards version.
* Rewrote debian/rules.
* Updated copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
    exit(0);
191
191
}
192
192
 
193
 
my @clients = map { $_->accept } @servers;
 
193
my @clients = map { scalar $_->accept } @servers;
194
194
if (!$clients[0] or !$clients[1] or !$clients[2]) {
195
195
    print "not ok \# Client init\n";
196
196
    exit;
200
200
close $_ foreach (@clients);
201
201
 
202
202
 
203
 
@clients = map { $_->accept } @servers;
 
203
@clients = map { scalar $_->accept } @servers;
204
204
if (!$clients[0] or !$clients[1] or !$clients[2]) {
205
205
    print "not ok \# Client init\n";
206
206
    exit;