summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/man/2/dial6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/man/2/dial b/sys/man/2/dial
index f5cb417fb..64354c299 100644
--- a/sys/man/2/dial
+++ b/sys/man/2/dial
@@ -256,7 +256,7 @@ use for communications:
.EX
int callkremvax(void)
{
- return dial("kremvax", 0, 0, 0);
+ return dial("kremvax", nil, nil, nil);
}
.EE
.PP
@@ -265,7 +265,7 @@ Call the local authentication server:
.EX
int dialauth(char *service)
{
- return dial(netmkaddr("$auth", 0, service), 0, 0, 0);
+ return dial(netmkaddr("$auth", nil, service), nil, nil, nil);
}
.EE
.PP
@@ -307,7 +307,7 @@ bekremvax(void)
/* echo until EOF */
while((n = read(dfd, buf, sizeof(buf))) > 0)
write(dfd, buf, n);
- exits(0);
+ exits(nil);
default:
close(lcfd);
break;