summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-11-09 15:48:49 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-11-09 15:48:49 +0000
commit8e879cf6918efbf40984bbfb6db0deecc26881f5 (patch)
tree71cdcb50035db7b7e93b5e00a0b4c51a13d49f63
parent41ee2b0d77b1d890bc284972aaf5d8935a0c1893 (diff)
- markus@cvs.openbsd.org 2002/11/05 20:10:37
[sftp-client.c] typo; GaryF@livevault.com
-rw-r--r--ChangeLog5
-rw-r--r--sftp-client.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c7a78602..e922dde4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
2320021021 2620021021
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"
31RCSID("$OpenBSD: sftp-client.c,v 1.35 2002/09/11 22:41:49 djm Exp $"); 31RCSID("$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);