[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.128 and 1.129

version 1.128, 2017/11/28 21:10:22 version 1.129, 2018/05/25 04:25:46
Line 655 
Line 655 
                 **dir = NULL;                  **dir = NULL;
         }          }
   
         return status;          return status == SSH2_FX_OK ? 0 : -1;
 }  }
   
 int  int
Line 1005 
Line 1005 
         if (status != SSH2_FX_OK)          if (status != SSH2_FX_OK)
                 error("Couldn't sync file: %s", fx2txt(status));                  error("Couldn't sync file: %s", fx2txt(status));
   
         return status;          return status == SSH2_FX_OK ? 0 : -1;
 }  }
   
 #ifdef notyet  #ifdef notyet
Line 1433 
Line 1433 
         sshbuf_free(msg);          sshbuf_free(msg);
         free(handle);          free(handle);
   
         return(status);          return status == SSH2_FX_OK ? 0 : -1;
 }  }
   
 static int  static int

Legend:
Removed from v.1.128  
changed lines
  Added in v.1.129