diff options
Diffstat (limited to 'libssh/options.c')
-rw-r--r-- | libssh/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/options.c b/libssh/options.c index 3359253e..f0611fb1 100644 --- a/libssh/options.c +++ b/libssh/options.c @@ -613,7 +613,7 @@ int ssh_options_set(ssh_session session, enum ssh_options_e type, } break; default: - ssh_set_error(session, SSH_REQUEST_DENIED, "Unkown ssh option %d", type); + ssh_set_error(session, SSH_REQUEST_DENIED, "Unknown ssh option %d", type); return -1; break; } @@ -1057,7 +1057,7 @@ int ssh_bind_options_set(ssh_bind sshbind, enum ssh_bind_options_e type, } break; default: - ssh_set_error(sshbind, SSH_REQUEST_DENIED, "Unkown ssh option %d", type); + ssh_set_error(sshbind, SSH_REQUEST_DENIED, "Unknown ssh option %d", type); return -1; break; } |