Skip to content

Commit

Permalink
[t/spec/S32-io] Make this pass
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@29016 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
carlin committed Nov 7, 2009
1 parent 4b42898 commit 841250a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S32-io/IO-Socket-INET.pl
Expand Up @@ -26,7 +26,7 @@
$fd.close();
while my $client = $server.accept() {
# warn "SERVER ACCEPTED";
my $received = $client.recv(36);
my $received = $client.recv();
# warn "SERVER RECEIVED '$received'";
$client.send( $received );
# warn "SERVER REPLIED";
Expand Down Expand Up @@ -60,7 +60,7 @@
# warn "SERVER LISTENING";
while my $client = $server.accept() {
# warn "SERVER ACCEPTED";
my $received = $client.recv(36);
my $received = $client.recv();
# warn "SERVER RECEIVED '$received'";
$client.close(); # without sending anything back
}
Expand Down

0 comments on commit 841250a

Please sign in to comment.