mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-11 18:50:28 +09:00
config: Fix copy&paste error in error message
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
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