diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-09-23 10:48:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-09-23 22:44:01 +0200 |
commit | 89d972f24cbfab93d3b9be69417d1ea58e7024af (patch) | |
tree | 9a6f52f59644b9e29b7d67aa22b1bf2c2c7c30b3 /lib/vauth | |
parent | a5bf6a36c53fd860c1e9ef92e60ec08a4ad8f8e7 (diff) | |
download | curl-89d972f24cbfab93d3b9be69417d1ea58e7024af.tar.gz |
vauth: The parameter 'status' must be surrounded by parentheses
PVS-Studio warning
Fixes #4402
Diffstat (limited to 'lib/vauth')
-rw-r--r-- | lib/vauth/vauth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vauth/vauth.h b/lib/vauth/vauth.h index 73bd25ed5..a1a557d2a 100644 --- a/lib/vauth/vauth.h +++ b/lib/vauth/vauth.h @@ -43,7 +43,7 @@ struct negotiatedata; #endif #if defined(USE_WINDOWS_SSPI) -#define GSS_ERROR(status) (status & 0x80000000) +#define GSS_ERROR(status) ((status) & 0x80000000) #endif /* This is used to build a SPN string */ |