[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.116 and 1.117

version 1.116, 2019/06/28 13:35:04 version 1.117, 2019/07/05 04:55:40
Line 43 
Line 43 
 #include "sftp.h"  #include "sftp.h"
 #include "sftp-common.h"  #include "sftp-common.h"
   
   char *sftp_realpath(const char *, char *); /* sftp-realpath.c */
   
 /* Our verbosity */  /* Our verbosity */
 static LogLevel log_level = SYSLOG_LEVEL_ERROR;  static LogLevel log_level = SYSLOG_LEVEL_ERROR;
   
Line 1154 
Line 1156 
         }          }
         debug3("request %u: realpath", id);          debug3("request %u: realpath", id);
         verbose("realpath \"%s\"", path);          verbose("realpath \"%s\"", path);
         if (realpath(path, resolvedname) == NULL) {          if (sftp_realpath(path, resolvedname) == NULL) {
                 send_status(id, errno_to_portable(errno));                  send_status(id, errno_to_portable(errno));
         } else {          } else {
                 Stat s;                  Stat s;

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.117