aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/tapefs
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/tapefs
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/tapefs')
-rw-r--r--src/cmd/tapefs/32vfs.c2
-rw-r--r--src/cmd/tapefs/util.c2
-rw-r--r--src/cmd/tapefs/v10fs.c2
-rw-r--r--src/cmd/tapefs/v6fs.c2
-rw-r--r--src/cmd/tapefs/zipfs.c3
5 files changed, 5 insertions, 6 deletions
diff --git a/src/cmd/tapefs/32vfs.c b/src/cmd/tapefs/32vfs.c
index 1d917f82..af5f5200 100644
--- a/src/cmd/tapefs/32vfs.c
+++ b/src/cmd/tapefs/32vfs.c
@@ -177,7 +177,7 @@ iget(int ino)
if ((flags&VFMT)==VIFDIR)
f.mode |= DMDIR;
f.uid = g2byte(dp->uid);
- f.gid = g2byte(dp->gid);
+ f.gid = g2byte(dp->gid);
f.mdate = g4byte(dp->mtime);
return f;
}
diff --git a/src/cmd/tapefs/util.c b/src/cmd/tapefs/util.c
index 199235f3..a166dcd0 100644
--- a/src/cmd/tapefs/util.c
+++ b/src/cmd/tapefs/util.c
@@ -34,7 +34,7 @@ getpass(char *file)
up[nid].id = atoi(line[2]);
up[nid].name = strdup(line[0]);
nid++;
- }
+ }
Bterm(bp);
up[nid].name = 0;
return up;
diff --git a/src/cmd/tapefs/v10fs.c b/src/cmd/tapefs/v10fs.c
index c2875b84..0b695dba 100644
--- a/src/cmd/tapefs/v10fs.c
+++ b/src/cmd/tapefs/v10fs.c
@@ -168,7 +168,7 @@ iget(int ino)
if ((flags&VFMT)==VIFDIR)
f.mode |= DMDIR;
f.uid = g2byte(dp->uid);
- f.gid = g2byte(dp->gid);
+ f.gid = g2byte(dp->gid);
f.mdate = g4byte(dp->mtime);
return f;
}
diff --git a/src/cmd/tapefs/v6fs.c b/src/cmd/tapefs/v6fs.c
index 74c6737c..43de410c 100644
--- a/src/cmd/tapefs/v6fs.c
+++ b/src/cmd/tapefs/v6fs.c
@@ -169,7 +169,7 @@ iget(int ino)
if ((flags&V6FMT)==V6IFDIR)
f.mode |= DMDIR;
f.uid = dp->uid;
- f.gid = dp->gid;
+ f.gid = dp->gid;
f.mdate = (dp->mtime[2]<<0) + (dp->mtime[3]<<8)
+(dp->mtime[0]<<16) + (dp->mtime[1]<<24);
return f;
diff --git a/src/cmd/tapefs/zipfs.c b/src/cmd/tapefs/zipfs.c
index e9354f7b..8725e0c9 100644
--- a/src/cmd/tapefs/zipfs.c
+++ b/src/cmd/tapefs/zipfs.c
@@ -154,7 +154,7 @@ doread(Ram *r, vlong off, long cnt)
sysfatal("%d - unsupported compression method", zh.meth);
break;
}
-
+
return buf;
}
@@ -382,4 +382,3 @@ msdos2time(int time, int date)
return tm2sec(&tm);
}
-