diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sftp-client.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -19,6 +19,9 @@ | |||
19 | - markus@cvs.openbsd.org 2002/11/05 19:45:20 | 19 | - markus@cvs.openbsd.org 2002/11/05 19:45:20 |
20 | [monitor.c] | 20 | [monitor.c] |
21 | handle overflows for size_t larger than u_int; siw@goneko.de, bug #425 | 21 | handle overflows for size_t larger than u_int; siw@goneko.de, bug #425 |
22 | - markus@cvs.openbsd.org 2002/11/05 20:10:37 | ||
23 | [sftp-client.c] | ||
24 | typo; GaryF@livevault.com | ||
22 | 25 | ||
23 | 20021021 | 26 | 20021021 |
24 | - (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from | 27 | - (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from |
@@ -796,4 +799,4 @@ | |||
796 | save auth method before monitor_reset_key_state(); bugzilla bug #284; | 799 | save auth method before monitor_reset_key_state(); bugzilla bug #284; |
797 | ok provos@ | 800 | ok provos@ |
798 | 801 | ||
799 | $Id: ChangeLog,v 1.2505 2002/11/09 15:47:47 mouring Exp $ | 802 | $Id: ChangeLog,v 1.2506 2002/11/09 15:48:49 mouring Exp $ |
diff --git a/sftp-client.c b/sftp-client.c index f6a73f379..30bef8936 100644 --- a/sftp-client.c +++ b/sftp-client.c | |||
@@ -28,7 +28,7 @@ | |||
28 | /* XXX: copy between two remote sites */ | 28 | /* XXX: copy between two remote sites */ |
29 | 29 | ||
30 | #include "includes.h" | 30 | #include "includes.h" |
31 | RCSID("$OpenBSD: sftp-client.c,v 1.35 2002/09/11 22:41:49 djm Exp $"); | 31 | RCSID("$OpenBSD: sftp-client.c,v 1.36 2002/11/05 20:10:37 markus Exp $"); |
32 | 32 | ||
33 | #include "openbsd-compat/sys-queue.h" | 33 | #include "openbsd-compat/sys-queue.h" |
34 | 34 | ||
@@ -660,7 +660,7 @@ do_symlink(struct sftp_conn *conn, char *oldpath, char *newpath) | |||
660 | 660 | ||
661 | status = get_status(conn->fd_in, id); | 661 | status = get_status(conn->fd_in, id); |
662 | if (status != SSH2_FX_OK) | 662 | if (status != SSH2_FX_OK) |
663 | error("Couldn't rename file \"%s\" to \"%s\": %s", oldpath, | 663 | error("Couldn't symlink file \"%s\" to \"%s\": %s", oldpath, |
664 | newpath, fx2txt(status)); | 664 | newpath, fx2txt(status)); |
665 | 665 | ||
666 | return(status); | 666 | return(status); |