diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-09-04 22:32:57 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-09-04 22:33:29 +0200 |
commit | e9de8e78f0a73c5fa7e0a7aba6b85f3d8afa76d9 (patch) | |
tree | 4d28554b767e917ea412bb81309b920fd4f93c8a /lib/curl_sasl.h | |
parent | 2eabb7d590aaa14c211e3a306582ff36fc3fc0f5 (diff) | |
download | curl-e9de8e78f0a73c5fa7e0a7aba6b85f3d8afa76d9.tar.gz |
SASL: fix compiler warnings
comparison between signed and unsigned integer expressions
suggest parentheses around '&&' within '||' (twice)
Diffstat (limited to 'lib/curl_sasl.h')
-rw-r--r-- | lib/curl_sasl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index 964e94cad..1cac8fd63 100644 --- a/lib/curl_sasl.h +++ b/lib/curl_sasl.h @@ -36,7 +36,7 @@ /* Authentication mechanism values */ #define SASL_AUTH_NONE 0 -#define SASL_AUTH_ANY ~0 +#define SASL_AUTH_ANY ~0U /* This is used to generate a base64 encoded PLAIN authentication message */ CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data, |