Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
just check for the contained data
  • Loading branch information
FROGGS committed Jan 23, 2014
1 parent 8f066b8 commit 2620680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S32-io/IO-Socket-INET.pl
Expand Up @@ -222,7 +222,7 @@
while $chunk = $sock.recv( 4096, bin => True ) {
$recv ~= $chunk;
}
say $binary eqv $recv ?? 'OK-8' !! 'NOK-8';
say $binary.elems eqv $recv.elems ?? 'OK-8' !! 'NOK-8';
$sock.close();
}
}
Expand Down

0 comments on commit 2620680

Please sign in to comment.