1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-04-10 23:01:24 +00:00

- mktape is kind of loud. tone it down a little.

This commit is contained in:
tim.newsham
2008-05-11 23:45:37 +00:00
parent c05c8c0fb7
commit 161b1b66a3

View File

@@ -116,6 +116,7 @@ urwr- 0 3678 34 Dec 31 04:08 /bin/tap 1887871165
xrwr- 1 424 231 Feb 6 14:50 /etc/init 2081988977
"""
noisy = 0
def uMode(s) :
m = 0
@@ -150,7 +151,8 @@ def sMode(m) :
def wrFile(out, fn, d, mode, uid) :
"write out file."
print sMode(mode), uid, fn
if noisy :
print sMode(mode), uid, fn
meta = pack("<HBB", len(d), mode, uid) + fn
out.write(pad(meta))
out.write(pad(d))