diff options
author | aiju <devnull@localhost> | 2017-04-28 18:32:04 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2017-04-28 18:32:04 +0000 |
commit | 5ce3f70f72317e6a1dc387afd1023c99f6186afb (patch) | |
tree | 532c7d7b638634a08185a057e9a3deb5292e1310 /sys/src/cmd/sshfs.c | |
parent | 825ab5d286bfbf959fef678afcdf0c887a5eb91c (diff) |
sshfs: remove debug print
Diffstat (limited to 'sys/src/cmd/sshfs.c')
-rw-r--r-- | sys/src/cmd/sshfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/src/cmd/sshfs.c b/sys/src/cmd/sshfs.c index b65e4ffe0..b3cbbfe1d 100644 --- a/sys/src/cmd/sshfs.c +++ b/sys/src/cmd/sshfs.c @@ -1224,7 +1224,6 @@ readfile(char *fn) switch(recvpkt()){ case SSH_FXP_STATUS: if(unpack(rxpkt, rxlen, "_____u", &code) < 0) goto err; - print("%d\n", code); if(code == SSH_FX_EOF) goto out; default: goto err; |