upstream: improve error message when trying to expand a ~user path

for a user that doesn't exist; better matches what the shell does

ok deraadt@

OpenBSD-Commit-ID: 1ddefa3c3a78b69ce13d1b8f67bc9f2cefd23ad6
This commit is contained in:
djm@openbsd.org 2021-11-08 21:32:49 +00:00 committed by Damien Miller
parent 10b899a15c
commit 6997a592ec
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sftp-server.c,v 1.130 2021/11/06 10:13:39 dtucker Exp $ */
/* $OpenBSD: sftp-server.c,v 1.131 2021/11/08 21:32:49 djm Exp $ */
/*
* Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
*
@ -1557,7 +1557,7 @@ process_extended_expand(u_int32_t id)
} else {
/* ~user expansions */
if (tilde_expand(path, pw->pw_uid, &npath) != 0) {
send_status(id, errno_to_portable(EINVAL));
send_status(id, errno_to_portable(ENOENT));
goto out;
}
free(path);