[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 and 1.2

version 1.1, 2001/02/04 11:11:54 version 1.2, 2001/06/26 06:33:01
Line 39 
Line 39 
 };  };
   
 /* Clear contents of attributes structure */  /* Clear contents of attributes structure */
 void attrib_clear(Attrib *a);  void attrib_clear(Attrib *);
   
 /* Convert from struct stat to filexfer attribs */  /* Convert from struct stat to filexfer attribs */
 void stat_to_attrib(struct stat *st, Attrib *a);  void stat_to_attrib(struct stat *, Attrib *);
   
 /* Decode attributes in buffer */  /* Decode attributes in buffer */
 Attrib *decode_attrib(Buffer *b);  Attrib *decode_attrib(Buffer *);
   
 /* Encode attributes to buffer */  /* Encode attributes to buffer */
 void encode_attrib(Buffer *b, Attrib *a);  void encode_attrib(Buffer *, Attrib *);
   
 /* Convert from SSH2_FX_ status to text error message */  /* Convert from SSH2_FX_ status to text error message */
 const char *fx2txt(int status);  const char *fx2txt(int);
   

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