summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
Diffstat (limited to 'isys')
-rw-r--r--isys/cpio.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/isys/cpio.c b/isys/cpio.c
index 6c9985a07..97d411764 100644
--- a/isys/cpio.c
+++ b/isys/cpio.c
@@ -12,10 +12,6 @@ int installCpioFile(gzFile fd, char * cpioName, char * outName, int inWin) {
int rc;
const char * failedFile;
- FILE *myfile;
-
- myfile = fopen("/dev/tty3", "rw");
-
if (outName) {
map.archivePath = cpioName;
map.fsPath = outName;
@@ -25,8 +21,6 @@ int installCpioFile(gzFile fd, char * cpioName, char * outName, int inWin) {
rc = myCpioInstallArchive(fd, outName ? &map : NULL, 1, NULL, NULL,
&failedFile);
- fprintf(myfile, "Failed file = %s\n", failedFile);
-
if (rc || access(outName, R_OK)) {
return -1;
}