summaryrefslogtreecommitdiffstats
path: root/src/ccapi
diff options
context:
space:
mode:
authorKevin Koch <kpkoch@mit.edu>2007-11-20 16:46:22 +0000
committerKevin Koch <kpkoch@mit.edu>2007-11-20 16:46:22 +0000
commitab8eafcf0c5139df878d29d5c717eaaae6761156 (patch)
tree114894e26b2ab70ae7541ed686d5f38baf1361ba /src/ccapi
parentf5dcf270b3ff6aa1f1b49962e450e3fc5e05a411 (diff)
downloadkrb5-ab8eafcf0c5139df878d29d5c717eaaae6761156.tar.gz
krb5-ab8eafcf0c5139df878d29d5c717eaaae6761156.tar.xz
krb5-ab8eafcf0c5139df878d29d5c717eaaae6761156.zip
Disable warnings about #pragma mark
TargetVersion: 1.7 Component: krb5-libs Ticket: 5594 Subj: Tweaks for 1.7 build on Windows. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20167 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi')
-rw-r--r--src/ccapi/common/cci_cred_union.c4
-rw-r--r--src/ccapi/common/cci_stream.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ccapi/common/cci_cred_union.c b/src/ccapi/common/cci_cred_union.c
index 74a87a6868..f0dbc1f008 100644
--- a/src/ccapi/common/cci_cred_union.c
+++ b/src/ccapi/common/cci_cred_union.c
@@ -26,6 +26,10 @@
#include "cci_common.h"
+#ifdef WIN32
+#pragma warning ( disable : 4068)
+#endif
+
#pragma mark -
/* ------------------------------------------------------------------------ */
diff --git a/src/ccapi/common/cci_stream.c b/src/ccapi/common/cci_stream.c
index 8c0ef3356e..f8438e5499 100644
--- a/src/ccapi/common/cci_stream.c
+++ b/src/ccapi/common/cci_stream.c
@@ -27,6 +27,10 @@
#include "cci_common.h"
#include "k5-platform.h" /* for byte swapping */
+#ifdef WIN32
+#pragma warning ( disable : 4068)
+#endif
+
#if !defined(htonll)
#define htonll(x) k5_htonll(x)
#endif