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

Diff for /src/usr.bin/ssh/sftp-common.h between version 1.1.6.2 and 1.2

version 1.1.6.2, 2002/03/09 00:20:45 version 1.2, 2001/06/26 06:33:01
Line 38 
Line 38 
         u_int32_t       mtime;          u_int32_t       mtime;
 };  };
   
 void     attrib_clear(Attrib *);  /* Clear contents of attributes structure */
 void     stat_to_attrib(struct stat *, Attrib *);  void attrib_clear(Attrib *);
 Attrib  *decode_attrib(Buffer *);  
 void     encode_attrib(Buffer *, Attrib *);  
   
   /* Convert from struct stat to filexfer attribs */
   void stat_to_attrib(struct stat *, Attrib *);
   
   /* Decode attributes in buffer */
   Attrib *decode_attrib(Buffer *);
   
   /* Encode attributes to buffer */
   void encode_attrib(Buffer *, Attrib *);
   
   /* Convert from SSH2_FX_ status to text error message */
 const char *fx2txt(int);  const char *fx2txt(int);
   

Legend:
Removed from v.1.1.6.2  
changed lines
  Added in v.1.2