diff options
author | 2002-11-05 20:10:37 +0000 | |
---|---|---|
committer | 2002-11-05 20:10:37 +0000 | |
commit | 1b4938ec28d88b2cd390cbc218687dd9510a0099 (patch) | |
tree | 8cb12a2345d9dd9c95fa028a12b109a869a54cb4 | |
parent | handle overflows for size_t larger than u_int; siw@goneko.de, bug #425 (diff) | |
download | wireguard-openbsd-1b4938ec28d88b2cd390cbc218687dd9510a0099.tar.xz wireguard-openbsd-1b4938ec28d88b2cd390cbc218687dd9510a0099.zip |
typo; GaryF@livevault.com
-rw-r--r-- | usr.bin/ssh/sftp-client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-client.c b/usr.bin/ssh/sftp-client.c index 0bea66c9500..e4b443dc2fb 100644 --- a/usr.bin/ssh/sftp-client.c +++ b/usr.bin/ssh/sftp-client.c @@ -28,7 +28,7 @@ /* XXX: copy between two remote sites */ #include "includes.h" -RCSID("$OpenBSD: sftp-client.c,v 1.35 2002/09/11 22:41:49 djm Exp $"); +RCSID("$OpenBSD: sftp-client.c,v 1.36 2002/11/05 20:10:37 markus Exp $"); #include <sys/queue.h> @@ -660,7 +660,7 @@ do_symlink(struct sftp_conn *conn, char *oldpath, char *newpath) status = get_status(conn->fd_in, id); if (status != SSH2_FX_OK) - error("Couldn't rename file \"%s\" to \"%s\": %s", oldpath, + error("Couldn't symlink file \"%s\" to \"%s\": %s", oldpath, newpath, fx2txt(status)); return(status); |