diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2013-07-22 10:26:42 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2013-07-22 10:42:30 +0200 |
commit | da1eaea51a83552f129425bd7b6e4c98aedd9564 (patch) | |
tree | 0b3085e6f1a505271325462a306fb02504bda091 /src/packet.c | |
parent | 329f4da1e19adfe53a835116d4a45217b746a82e (diff) | |
download | libssh-da1eaea51a83552f129425bd7b6e4c98aedd9564.tar.gz libssh-da1eaea51a83552f129425bd7b6e4c98aedd9564.tar.xz libssh-da1eaea51a83552f129425bd7b6e4c98aedd9564.zip |
gassapi: Fix check if it is enabled.
Diffstat (limited to 'src/packet.c')
-rw-r--r-- | src/packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet.c b/src/packet.c index c4b4a9a..3302847 100644 --- a/src/packet.c +++ b/src/packet.c @@ -100,7 +100,7 @@ static ssh_packet_callback default_packet_handlers[]= { NULL, // SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE 63 NULL, // SSH2_MSG_USERAUTH_GSSAPI_ERROR 64 NULL, // SSH2_MSG_USERAUTH_GSSAPI_ERRTOK 65 -#if WITH_GSSAPI && WITH_SERVER +#if defined(WITH_GSSAPI) && defined(WITH_SERVER) ssh_packet_userauth_gssapi_mic, // SSH2_MSG_USERAUTH_GSSAPI_MIC 66 #else /* WITH_GSSAPI && WITH_SERVER */ NULL, |