aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2004-08-13 22:39:19 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-08-13 22:39:19 +0800
commited76fc7724286390412032884d86034a9282ea8a (patch)
treedba66f3733f905105ee97b3380a86ad0e0adcdc4
parentb4a903bda1fd2e1840dd14ed9b383d7af0d212ae (diff)
downloadgsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar
gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.gz
gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.bz2
gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.lz
gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.xz
gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.zst
gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.zip
Handle et/comm_err.h as well as the normal comm_err.h
2004-08-13 Rodney Dawes <dobey@novell.com> * camel-sasl-gssapi.c: Handle et/comm_err.h as well as the normal comm_err.h svn path=/trunk/; revision=26911
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-sasl-gssapi.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index c11eb08c67..f17f6e0bbb 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2004-08-13 Rodney Dawes <dobey@novell.com>
+
+ * camel-sasl-gssapi.c: Handle et/comm_err.h as well as the
+ normal comm_err.h
+
2004-08-11 Jeffrey Stedfast <fejj@novell.com>
Fix for bug #62771
diff --git a/camel/camel-sasl-gssapi.c b/camel/camel-sasl-gssapi.c
index c32a3583a2..60619e7fec 100644
--- a/camel/camel-sasl-gssapi.c
+++ b/camel/camel-sasl-gssapi.c
@@ -28,7 +28,11 @@
#ifdef HAVE_KRB5
#include <string.h>
+#ifdef HAVE_ET_COM_ERR_H
+#include <et/com_err.h>
+#else
#include <com_err.h>
+#endif
#ifdef HAVE_MIT_KRB5
#include <gssapi/gssapi.h>
#include <gssapi/gssapi_generic.h>