mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-07-28 01:41:48 +03:00
config: Fix copy&paste error in error message
Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit 8ef249a4a4
)
This commit is contained in:
@ -894,9 +894,11 @@ ssh_config_parse_line(ssh_session session,
|
|||||||
/* Here we match only one argument */
|
/* Here we match only one argument */
|
||||||
p = ssh_config_get_str_tok(&s, NULL);
|
p = ssh_config_get_str_tok(&s, NULL);
|
||||||
if (p == NULL || p[0] == '\0') {
|
if (p == NULL || p[0] == '\0') {
|
||||||
ssh_set_error(session, SSH_FATAL,
|
ssh_set_error(session,
|
||||||
"line %d: ERROR - Match user keyword "
|
SSH_FATAL,
|
||||||
"requires argument", count);
|
"line %d: ERROR - Match localuser keyword "
|
||||||
|
"requires argument",
|
||||||
|
count);
|
||||||
SAFE_FREE(x);
|
SAFE_FREE(x);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user