=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sftp-client.c,v retrieving revision 1.158 retrieving revision 1.159 diff -u -r1.158 -r1.159 --- src/usr.bin/ssh/sftp-client.c 2022/01/01 01:55:30 1.158 +++ src/usr.bin/ssh/sftp-client.c 2022/01/08 07:34:57 1.159 @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.c,v 1.158 2022/01/01 01:55:30 jsg Exp $ */ +/* $OpenBSD: sftp-client.c,v 1.159 2022/01/08 07:34:57 djm Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller * @@ -992,7 +992,7 @@ if ((r = sshbuf_get_u32(msg, &status)) != 0) fatal_fr(r, "parse status"); - error("Couldn't canonicalize: %s", fx2txt(status)); + error("canonicalize %s: %s", path, fx2txt(status)); sshbuf_free(msg); return NULL; } else if (type != SSH2_FXP_NAME) @@ -1381,7 +1381,7 @@ debug3("Sent %s message SSH2_FXP_OPEN I:%u P:%s M:0x%04x", tag, id, path, openmode); if ((handle = get_handle(conn, id, &handle_len, - "%s open(\"%s\")", tag, path)) == NULL) + "%s open \"%s\"", tag, path)) == NULL) return -1; /* success */ *handlep = handle;