mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
upstream: Fix typo in fatal error message.
Patch from vapier at chromium.org. OpenBSD-Commit-ID: 8a0c164a6a25eef0eedfc30df95bfa27644e35cf
This commit is contained in:
parent
e6abafe9a6
commit
5ec4ebc254
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: sftp-server.c,v 1.144 2022/09/19 10:41:58 djm Exp $ */
|
/* $OpenBSD: sftp-server.c,v 1.145 2022/11/09 09:04:12 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
|
||||||
*
|
*
|
||||||
@ -1745,7 +1745,7 @@ process_extended_get_users_groups_by_id(u_int32_t id)
|
|||||||
name = user_pw == NULL ? "" : user_pw->pw_name;
|
name = user_pw == NULL ? "" : user_pw->pw_name;
|
||||||
debug3_f("uid %u => \"%s\"", n, name);
|
debug3_f("uid %u => \"%s\"", n, name);
|
||||||
if ((r = sshbuf_put_cstring(usernames, name)) != 0)
|
if ((r = sshbuf_put_cstring(usernames, name)) != 0)
|
||||||
fatal_fr(r, "assemble gid reply");
|
fatal_fr(r, "assemble uid reply");
|
||||||
nusers++;
|
nusers++;
|
||||||
}
|
}
|
||||||
while (sshbuf_len(gids) != 0) {
|
while (sshbuf_len(gids) != 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user