1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-31 00:03:07 +03:00

tests: Fix error message

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Jakub Jelen
2019-02-02 16:44:04 +01:00
committed by Andreas Schneider
parent 82f4c6c607
commit fd95b68c0f

View File

@ -264,7 +264,7 @@ static int pkd_exec_hello(int fd, struct pkd_daemon_args *args) {
} else if (type == PKD_ECDSA) {
opts = SSH_BIND_OPTIONS_ECDSAKEY;
} else {
pkderr("unknown kex algorithm: %d\n", type);
pkderr("unknown hostkey type: %d\n", type);
rc = -1;
goto outclose;
}