1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

auth: Fix build warning if we don't build with gssapi.

This commit is contained in:
Andreas Schneider
2013-07-22 12:27:32 +02:00
parent 35d0c3a860
commit dbf3cdecda

View File

@@ -2158,6 +2158,8 @@ pending:
if (rc != SSH_AUTH_AGAIN) { if (rc != SSH_AUTH_AGAIN) {
session->pending_call_state = SSH_PENDING_CALL_NONE; session->pending_call_state = SSH_PENDING_CALL_NONE;
} }
#else
(void) session; /* unused */
#endif #endif
return rc; return rc;
} }