1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-10 06:23:01 +03:00

Fix SSH1 related warning

This commit is contained in:
Aris Adamantiadis
2010-01-16 18:38:49 +01:00
parent 94d1112c55
commit 549ea0d7ba

View File

@@ -538,6 +538,10 @@ int ssh_service_request(ssh_session session, const char *service) {
case SSH_AUTH_SERVICE_SENT:
rc=SSH_AGAIN;
break;
case SSH_AUTH_SERVICE_USER_SENT:
/* Invalid state, SSH1 specific */
rc=SSH_ERROR;
break;
}
leave_function();