Index: nss/lib/certdb/certdb.h |
diff --git a/nss/lib/certdb/certdb.h b/nss/lib/certdb/certdb.h |
index 41e0b91c1ee89db51564a9d4d8b70f0646c06785..d0d53c30f6403a2a60c97877e070415d61a78730 100644 |
--- a/nss/lib/certdb/certdb.h |
+++ b/nss/lib/certdb/certdb.h |
@@ -7,16 +7,16 @@ |
/* common flags for all types of certificates */ |
-#define CERTDB_TERMINAL_RECORD (1<<0) |
-#define CERTDB_TRUSTED (1<<1) |
-#define CERTDB_SEND_WARN (1<<2) |
-#define CERTDB_VALID_CA (1<<3) |
-#define CERTDB_TRUSTED_CA (1<<4) /* trusted for issuing server certs */ |
-#define CERTDB_NS_TRUSTED_CA (1<<5) |
-#define CERTDB_USER (1<<6) |
-#define CERTDB_TRUSTED_CLIENT_CA (1<<7) /* trusted for issuing client certs */ |
-#define CERTDB_INVISIBLE_CA (1<<8) /* don't show in UI */ |
-#define CERTDB_GOVT_APPROVED_CA (1<<9) /* can do strong crypto in export ver */ |
+#define CERTDB_TERMINAL_RECORD (1u<<0) |
+#define CERTDB_TRUSTED (1u<<1) |
+#define CERTDB_SEND_WARN (1u<<2) |
+#define CERTDB_VALID_CA (1u<<3) |
+#define CERTDB_TRUSTED_CA (1u<<4) /* trusted for issuing server certs */ |
+#define CERTDB_NS_TRUSTED_CA (1u<<5) |
+#define CERTDB_USER (1u<<6) |
+#define CERTDB_TRUSTED_CLIENT_CA (1u<<7) /* trusted for issuing client certs */ |
+#define CERTDB_INVISIBLE_CA (1u<<8) /* don't show in UI */ |
+#define CERTDB_GOVT_APPROVED_CA (1u<<9) /* can do strong crypto in export ver */ |
/* old usage, to keep old programs compiling */ |
/* On Windows, Mac, and Linux (and other gcc platforms), we can give compile |