diff options
author | lns <matzeton@googlemail.com> | 2019-09-08 11:47:49 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2019-09-08 11:47:49 +0200 |
commit | ecdaa9dba862af88f1b56d731bafae3b88ff230e (patch) | |
tree | 64d5b28b08f070ea79c1933f751f6303acdf6bc2 /src | |
parent | c6908ad9a106138549541790688095b2e0e14511 (diff) |
added new libssh pre processor check for libssh versions >0.7.x
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol_ssh.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/protocol_ssh.c b/src/protocol_ssh.c index 079d148..f04218e 100644 --- a/src/protocol_ssh.c +++ b/src/protocol_ssh.c @@ -62,9 +62,14 @@ #include "utils.h" #include "log.h" -#if LIBSSH_VERSION_MAJOR != 0 || LIBSSH_VERSION_MINOR < 7 || \ - LIBSSH_VERSION_MICRO < 3 -#pragma message "Unsupported libssh version < 0.7.3" +#if LIBSSH_VERSION_MAJOR == 0 +#if LIBSSH_VERSION_MINOR < 7 +#pragma message "Unsupported libssh version < 0.7.x" +#elif LIBSSH_VERSION_MINOR > 7 +#pragma message "Unsupported libssh version > 0.7.x" +#endif +#else +#error "Unsupported libssh version 1.x.x, this software WONT work" #endif #define CACHE_MAX 32 #define CACHE_TIME (60 * 20) /* max cache time 20 minutes */ |