Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net.schmizz.sshj.sftp.FileAttributes.toString mistake in writing #258

Closed
guoxp11 opened this issue Jul 31, 2016 · 1 comment
Closed

net.schmizz.sshj.sftp.FileAttributes.toString mistake in writing #258

guoxp11 opened this issue Jul 31, 2016 · 1 comment

Comments

@guoxp11
Copy link

guoxp11 commented Jul 31, 2016

if (has(Flag.UIDGID))
sb.append("uid=").append(size).append(",gid=").append(gid).append(";");

should be changed to:

if (has(Flag.UIDGID))
sb.append("uid=").append(uid).append(",gid=").append(gid).append(";");

@guoxp11 guoxp11 changed the title net.schmizz.sshj.sftp.FileAttributes.toString net.schmizz.sshj.sftp.FileAttributes.toString mistake in writing Jul 31, 2016
@hierynomus
Copy link
Owner

Yes, that makes more sense indeed. Thanks!

Op 31 jul. 2016 6:16 a.m. schreef "guoxp11" notifications@github.com:

if (has(Flag.UIDGID))
sb.append("uid=").append(size).append(",gid=").append(gid).append(";");

should be changed to:

if (has(Flag.UIDGID))
sb.append("uid=").append(uid).append(",gid=").append(gid).append(";");


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#258, or mute the thread
https://github.com/notifications/unsubscribe-auth/AAHLowzKH2CsplLY4JbFecgECZKzOILYks5qbCGFgaJpZM4JY9BM
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants