[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.16 and 1.17

version 1.16, 2001/04/05 10:42:52 version 1.17, 2001/06/23 15:12:20
Line 51 
Line 51 
 /* Message ID */  /* Message ID */
 static u_int msg_id = 1;  static u_int msg_id = 1;
   
 void  static void
 send_msg(int fd, Buffer *m)  send_msg(int fd, Buffer *m)
 {  {
         int mlen = buffer_len(m);          int mlen = buffer_len(m);
Line 70 
Line 70 
         buffer_free(&oqueue);          buffer_free(&oqueue);
 }  }
   
 void  static void
 get_msg(int fd, Buffer *m)  get_msg(int fd, Buffer *m)
 {  {
         u_int len, msg_len;          u_int len, msg_len;
Line 98 
Line 98 
         }          }
 }  }
   
 void  static void
 send_string_request(int fd, u_int id, u_int code, char *s,  send_string_request(int fd, u_int id, u_int code, char *s,
     u_int len)      u_int len)
 {  {
Line 113 
Line 113 
         buffer_free(&msg);          buffer_free(&msg);
 }  }
   
 void  static void
 send_string_attrs_request(int fd, u_int id, u_int code, char *s,  send_string_attrs_request(int fd, u_int id, u_int code, char *s,
     u_int len, Attrib *a)      u_int len, Attrib *a)
 {  {
Line 129 
Line 129 
         buffer_free(&msg);          buffer_free(&msg);
 }  }
   
 u_int  static u_int
 get_status(int fd, int expected_id)  get_status(int fd, int expected_id)
 {  {
         Buffer msg;          Buffer msg;
Line 154 
Line 154 
         return(status);          return(status);
 }  }
   
 char *  static char *
 get_handle(int fd, u_int expected_id, u_int *len)  get_handle(int fd, u_int expected_id, u_int *len)
 {  {
         Buffer msg;          Buffer msg;
Line 183 
Line 183 
         return(handle);          return(handle);
 }  }
   
 Attrib *  static Attrib *
 get_decode_stat(int fd, u_int expected_id, int quiet)  get_decode_stat(int fd, u_int expected_id, int quiet)
 {  {
         Buffer msg;          Buffer msg;
Line 283 
Line 283 
 }  }
   
   
 int  static int
 do_lsreaddir(int fd_in, int fd_out, char *path, int printflag,  do_lsreaddir(int fd_in, int fd_out, char *path, int printflag,
     SFTP_DIRENT ***dir)      SFTP_DIRENT ***dir)
 {  {

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17