=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sftp-client.h,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -r1.2 -r1.2.2.1 --- src/usr.bin/ssh/sftp-client.h 2001/03/07 10:11:23 1.2 +++ src/usr.bin/ssh/sftp-client.h 2001/03/12 15:44:14 1.2.2.1 @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.h,v 1.2 2001/03/07 10:11:23 djm Exp $ */ +/* $OpenBSD: sftp-client.h,v 1.2.2.1 2001/03/12 15:44:14 jason Exp $ */ /* * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -26,10 +26,7 @@ /* Client side of SSH2 filexfer protocol */ -/* - * Initialiase a SSH filexfer connection. Returns -1 on error or - * protocol version on success. - */ +/* Initialiase a SSH filexfer connection */ int do_init(int fd_in, int fd_out); /* Close file referred to by 'handle' */ @@ -69,12 +66,6 @@ /* Rename 'oldpath' to 'newpath' */ int do_rename(int fd_in, int fd_out, char *oldpath, char *newpath); - -/* Rename 'oldpath' to 'newpath' */ -int do_symlink(int fd_in, int fd_out, char *oldpath, char *newpath); - -/* Return target of symlink 'path' - caller must free result */ -char *do_readlink(int fd_in, int fd_out, char *path); /* XXX: add callbacks to do_download/do_upload so we can do progress meter */