=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sftp-client.h,v retrieving revision 1.2.2.2 retrieving revision 1.3 diff -u -r1.2.2.2 -r1.3 --- src/usr.bin/ssh/sftp-client.h 2001/03/21 18:53:04 1.2.2.2 +++ src/usr.bin/ssh/sftp-client.h 2001/03/13 22:42:54 1.3 @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.h,v 1.2.2.2 2001/03/21 18:53:04 jason Exp $ */ +/* $OpenBSD: sftp-client.h,v 1.3 2001/03/13 22:42:54 djm Exp $ */ /* * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -62,14 +62,14 @@ int do_rmdir(int fd_in, int fd_out, char *path); /* Get file attributes of 'path' (follows symlinks) */ -Attrib *do_stat(int fd_in, int fd_out, char *path, int quiet); +Attrib *do_stat(int fd_in, int fd_out, char *path); /* Get file attributes of 'path' (does not follow symlinks) */ -Attrib *do_lstat(int fd_in, int fd_out, char *path, int quiet); +Attrib *do_lstat(int fd_in, int fd_out, char *path); /* Get file attributes of open file 'handle' */ -Attrib *do_fstat(int fd_in, int fd_out, char *handle, u_int handle_len, - int quiet); +Attrib *do_fstat(int fd_in, int fd_out, char *handle, + u_int handle_len); /* Set file attributes of 'path' */ int do_setstat(int fd_in, int fd_out, char *path, Attrib *a);