[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.102 and 1.103

version 1.102, 2013/10/17 00:30:13 version 1.103, 2014/01/17 06:23:24
Line 1228 
Line 1228 
         struct statvfs st;          struct statvfs st;
   
         path = get_string(NULL);          path = get_string(NULL);
         debug3("request %u: statfs", id);          debug3("request %u: statvfs", id);
         logit("statfs \"%s\"", path);          logit("statvfs \"%s\"", path);
   
         if (statvfs(path, &st) != 0)          if (statvfs(path, &st) != 0)
                 send_status(id, errno_to_portable(errno));                  send_status(id, errno_to_portable(errno));

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.103