[sftp-client.c]
     typo; GaryF@livevault.com
This commit is contained in:
Ben Lindstrom 2002-11-09 15:48:49 +00:00
Родитель 41ee2b0d77
Коммит 8e879cf691
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -19,6 +19,9 @@
- markus@cvs.openbsd.org 2002/11/05 19:45:20
[monitor.c]
handle overflows for size_t larger than u_int; siw@goneko.de, bug #425
- markus@cvs.openbsd.org 2002/11/05 20:10:37
[sftp-client.c]
typo; GaryF@livevault.com
20021021
- (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from
@ -796,4 +799,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
$Id: ChangeLog,v 1.2505 2002/11/09 15:47:47 mouring Exp $
$Id: ChangeLog,v 1.2506 2002/11/09 15:48:49 mouring Exp $

Просмотреть файл

@ -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 "openbsd-compat/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);