diff options
author | Rob Landley <rob@landley.net> | 2019-05-14 17:22:03 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-05-14 17:22:03 -0500 |
commit | 6a6eb6f7fdfc474bdf93e46bd399c0d6053bc4cd (patch) | |
tree | a643a9f9aa83be047c34962b42bda84f1f627b98 | |
parent | 5462157293bc836fdd833ddeb667c72ed7cfdf96 (diff) | |
download | toybox-6a6eb6f7fdfc474bdf93e46bd399c0d6053bc4cd.tar.gz |
Checked in a debugging printf. Oops.
-rw-r--r-- | toys/posix/tar.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/toys/posix/tar.c b/toys/posix/tar.c index c7bdcbaa..24f27678 100644 --- a/toys/posix/tar.c +++ b/toys/posix/tar.c @@ -596,7 +596,6 @@ static void unpack_tar(struct tar_hdr *first) maj = OTOI(tar.major); min = OTOI(tar.minor); TT.hdr.device = dev_makedev(maj, min); -dprintf(2, "here\n"); TT.hdr.uname = xstrndup(TT.owner ? TT.owner : tar.uname, sizeof(tar.uname)); TT.hdr.gname = xstrndup(TT.group ? TT.group : tar.gname, sizeof(tar.gname)); |