[BACK]Return to sftp-server.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sftp-server.c between version 1.2 and 1.3

version 1.2, 2000/09/01 22:29:32 version 1.3, 2000/09/01 22:32:41
Line 244 
Line 244 
         a.flags |= SSH_FXA_HAVE_SIZE;          a.flags |= SSH_FXA_HAVE_SIZE;
         a.size = st->st_size;          a.size = st->st_size;
         a.size_low = a.size;          a.size_low = a.size;
         a.size_high = (u_int32_t) a.size >> 32;          a.size_high = (u_int32_t) (a.size >> 32);
         a.flags |= SSH_FXA_HAVE_UGID;          a.flags |= SSH_FXA_HAVE_UGID;
         a.uid = st->st_uid;          a.uid = st->st_uid;
         a.gid = st->st_gid;          a.gid = st->st_gid;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3