summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-09-23 10:48:06 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-09-23 10:48:06 +0200
commit235aafd3c31ff891f954db4bd8dec9ce6c221ece (patch)
treeda2a3a1f0c1dda938ff9a8b3b3959699f71f076c
parent527461285f54bca59356e2c550d55ed9606e96d1 (diff)
downloadcurl-235aafd3c31ff891f954db4bd8dec9ce6c221ece.tar.gz
vauth: The parameter 'status' must be surrounded by parentheses
PVS-Studio warning Fixes #4402
-rw-r--r--lib/vauth/vauth.h2
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 */