Displaying 1 result from an estimated 1 matches for "l2287".
Did you mean:
12287
2012 Apr 09
0
How to set an attribute for a link?
...sshfs. And I discovered a
bug with sshfs when copying a link over sshfs is failed. It happens
because sshfs tries to invoke SETSTAT on a link when target is not
copied yet. I checked sshfs sources and found that it uses
SSH_FXP_SETSTAT operation.
https://github.com/fuse4x/sshfs/blob/master/sshfs.c#L2287
SSH_FXP_SETSTAT sets attributes to target file but I need to set an
attribute to link itself. What I need is SSH_FXP_LSETSTAT.
I tried to search over web and did not find any mention of
SSH_FXP_LSETSTAT. Is there any official way to set an attribute for a
link? Is there any openssh specific extens...