diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-17 08:52:11 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-17 08:52:11 +0800 |
commit | 76b2ad6623866547dd33818fc3a0615bc639b0cc (patch) | |
tree | 9e5e8dbb4953c8a5ee5f43d61f434ac91e88bc7c | |
parent | b3ddd598997195c6c4944cfa931973bb32000e07 (diff) | |
download | gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.tar gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.tar.gz gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.tar.bz2 gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.tar.lz gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.tar.xz gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.tar.zst gsoc2013-evolution-76b2ad6623866547dd33818fc3a0615bc639b0cc.zip |
Same.
2001-03-16 Jeffrey Stedfast <fejj@ximian.com>
* camel-private.h: Same.
* camel-remote-store.h: Fixed #include to use <>'s instead of ""'s
svn path=/trunk/; revision=8767
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/camel-private.h | 2 | ||||
-rw-r--r-- | camel/camel-remote-store.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 58e58e416b..65b72eb4de 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,11 @@ 2001-03-16 Jeffrey Stedfast <fejj@ximian.com> + * camel-private.h: Same. + + * camel-remote-store.h: Fixed #include to use <>'s instead of ""'s + +2001-03-16 Jeffrey Stedfast <fejj@ximian.com> + * camel-tcp-stream-ssl.c (ssl_bad_cert): Print info about the issuer of the certificate. diff --git a/camel/camel-private.h b/camel/camel-private.h index 33dc9da163..0a84d99a55 100644 --- a/camel/camel-private.h +++ b/camel/camel-private.h @@ -36,7 +36,7 @@ extern "C" { #ifdef ENABLE_THREADS #include <pthread.h> -#include "e-util/e-msgport.h" +#include <e-util/e-msgport.h> #endif struct _CamelFolderPrivate { diff --git a/camel/camel-remote-store.h b/camel/camel-remote-store.h index f894d51572..1f34eb5a6e 100644 --- a/camel/camel-remote-store.h +++ b/camel/camel-remote-store.h @@ -31,7 +31,7 @@ extern "C" { #pragma } #endif /* __cplusplus }*/ -#include "camel-store.h" +#include <camel/camel-store.h> #define CAMEL_REMOTE_STORE_TYPE (camel_remote_store_get_type ()) #define CAMEL_REMOTE_STORE(obj) (CAMEL_CHECK_CAST((obj), CAMEL_REMOTE_STORE_TYPE, CamelRemoteStore)) |