aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/srv.c
diff options
context:
space:
mode:
authorDan Cross <cross@gajendra.net>2020-01-10 14:44:21 +0000
committerDan Cross <cross@gajendra.net>2020-01-10 14:54:30 +0000
commitfa325e9b42b0bdfb48857d1958d9fb7ceac55151 (patch)
tree81d26256d152435135bcb1ae43121979a49f5f2b /src/cmd/srv.c
parent77a0a5b5194d4441c86de097f2aae297cb75e2c2 (diff)
downloadplan9port-fa325e9b42b0bdfb48857d1958d9fb7ceac55151.tar.gz
plan9port-fa325e9b42b0bdfb48857d1958d9fb7ceac55151.tar.bz2
plan9port-fa325e9b42b0bdfb48857d1958d9fb7ceac55151.zip
Trivial changes: whitespace and modes.
Remote whitespace at the ends of lines. Remove blank lines from the ends of files. Change modes on source files so that they are not executable. Signed-off-by: Dan Cross <cross@gajendra.net>
Diffstat (limited to 'src/cmd/srv.c')
-rw-r--r--src/cmd/srv.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/cmd/srv.c b/src/cmd/srv.c
index e53c99c8..c4e79cc4 100644
--- a/src/cmd/srv.c
+++ b/src/cmd/srv.c
@@ -30,7 +30,7 @@ threadmain(int argc, char **argv)
fmtinstall('F', fcallfmt);
fmtinstall('M', dirmodefmt);
-
+
ARGBEGIN{
case 'D':
debug = 1;
@@ -51,7 +51,7 @@ threadmain(int argc, char **argv)
default:
usage();
}ARGEND
-
+
if(argc != 1 && argc != 2)
usage();
@@ -80,7 +80,7 @@ do9p(Fcall *tx, Fcall *rx)
static uchar buf[9000];
static char ebuf[200];
int n;
-
+
n = convS2M(tx, buf, sizeof buf);
if(n == BIT16SZ){
werrstr("convS2M failed");
@@ -133,7 +133,7 @@ xauth(void)
if(rx.type == Rerror)
sysfatal("Tversion: %s", rx.ename);
msize = rx.msize;
-
+
tx.type = Tauth;
tx.tag = 1;
tx.afid = afid;
@@ -154,7 +154,7 @@ int
xread(void *buf, int n)
{
Fcall tx, rx;
-
+
tx.type = Tread;
tx.tag = 1;
tx.fid = 0; /* afid above */
@@ -165,7 +165,7 @@ xread(void *buf, int n)
werrstr("%s", rx.ename);
return -1;
}
-
+
if(rx.count > n){
werrstr("too much data returned");
return -1;
@@ -178,7 +178,7 @@ int
xwrite(void *buf, int n)
{
Fcall tx, rx;
-
+
tx.type = Twrite;
tx.tag = 1;
tx.fid = 0; /* afid above */
@@ -354,4 +354,3 @@ xauth_proxy(AuthGetkey *getkey, char *fmt, ...)
auth_freerpc(rpc);
return ai;
}
-