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

Diff for /src/usr.bin/ssh/sftp.c between version 1.169 and 1.170

version 1.169, 2015/01/14 13:54:13 version 1.170, 2015/01/20 23:14:00
Line 15 
Line 15 
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   
   #include <sys/param.h>  /* MIN MAX */
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/ioctl.h>  #include <sys/ioctl.h>
 #include <sys/wait.h>  #include <sys/wait.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/socket.h>  #include <sys/socket.h>
 #include <sys/param.h>  
 #include <sys/statvfs.h>  #include <sys/statvfs.h>
   
 #include <ctype.h>  #include <ctype.h>
Line 35 
Line 35 
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
 #include <util.h>  #include <util.h>
 #include <stdarg.h>  #include <stdarg.h>
   
Line 1380 
Line 1381 
         int cmdnum, i;          int cmdnum, i;
         unsigned long n_arg = 0;          unsigned long n_arg = 0;
         Attrib a, *aa;          Attrib a, *aa;
         char path_buf[MAXPATHLEN];          char path_buf[PATH_MAX];
         int err = 0;          int err = 0;
         glob_t g;          glob_t g;
   

Legend:
Removed from v.1.169  
changed lines
  Added in v.1.170