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

Diff for /src/usr.bin/ssh/sftp-client.c between version 1.146 and 1.147

version 1.146, 2021/08/07 00:07:18 version 1.147, 2021/08/07 00:08:52
Line 1615 
Line 1615 
                 error("\"%s\" is not a directory", src);                  error("\"%s\" is not a directory", src);
                 return -1;                  return -1;
         }          }
         if (print_flag)          if (print_flag && print_flag != SFTP_PROGRESS_ONLY)
                 mprintf("Retrieving %s\n", src);                  mprintf("Retrieving %s\n", src);
   
         if (dirattrib->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {          if (dirattrib->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
Line 1938 
Line 1938 
                 error("\"%s\" is not a directory", src);                  error("\"%s\" is not a directory", src);
                 return -1;                  return -1;
         }          }
         if (print_flag)          if (print_flag && print_flag != SFTP_PROGRESS_ONLY)
                 mprintf("Entering %s\n", src);                  mprintf("Entering %s\n", src);
   
         attrib_clear(&a);          attrib_clear(&a);

Legend:
Removed from v.1.146  
changed lines
  Added in v.1.147