summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-12-06 22:45:53 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-12-06 22:45:53 +1100
commite2f189a841c9beecae75a2df3784d73f9e6dd762 (patch)
treedea0adc141a29896e19ba529107fead4f0849cae /sftp-client.h
parent0133a727acc7db7bd5a733ca0bed8a06a112f389 (diff)
- djm@cvs.openbsd.org 2004/11/29 07:41:24
[sftp-client.h sftp.c] Some small fixes from moritz@jodeit.org. ok deraadt@
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sftp-client.h b/sftp-client.h
index a0e8e44b3..991e05d33 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.h,v 1.12 2004/02/17 05:39:51 djm Exp $ */ 1/* $OpenBSD: sftp-client.h,v 1.13 2004/11/29 07:41:24 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 4 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
@@ -30,8 +30,8 @@ struct SFTP_DIRENT {
30}; 30};
31 31
32/* 32/*
33 * Initialiase a SSH filexfer connection. Returns -1 on error or 33 * Initialiase a SSH filexfer connection. Returns NULL on error or
34 * protocol version on success. 34 * a pointer to a initialized sftp_conn struct on success.
35 */ 35 */
36struct sftp_conn *do_init(int, int, u_int, u_int); 36struct sftp_conn *do_init(int, int, u_int, u_int);
37 37