summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-12-14 14:07:45 +0000
committerCharles.Forsyth <devnull@localhost>2007-12-14 14:07:45 +0000
commit3295f7832b9a70e6fa8a3c27b2a8a5876a28e2c0 (patch)
tree7b79de4f701690ed70232f6a435dee81cb9b04b9 /man
parent2c445c899f930298822d6de03a6473c2b05a698a (diff)
20071214-1407
Diffstat (limited to 'man')
-rw-r--r--man/2/dial8
1 files changed, 4 insertions, 4 deletions
diff --git a/man/2/dial b/man/2/dial
index 8e0d15af..28f053be 100644
--- a/man/2/dial
+++ b/man/2/dial
@@ -278,16 +278,16 @@ listener()
{
ac := dial->announce("tcp!*!9995");
if(ac == nil){
- sys->print("can't announce: %r\n");
+ sys->print("can't announce: %r\en");
exit;
}
for(;;){
lc := dial->listen(ac);
if(lc == nil){
- sys->print("listen: %r\n");
+ sys->print("listen: %r\en");
exit;
}
- sys->print("incoming: %s\n", hd ctext(lc));
+ sys->print("incoming: %s\en", hd ctext(lc));
spawn client(lc);
}
}
@@ -296,7 +296,7 @@ client(c: ref Connection)
{
dfd := dial->accept(c);
if(dfd == nil){
- sys->print("%s: can't accept: %r\n", c.dir);
+ sys->print("%s: can't accept: %r\en", c.dir);
exit;
}
buf := array[Sys->ATOMICIO] of byte;