diff options
author | Not Zed <NotZed@Ximian.com> | 2002-05-07 15:31:26 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-05-07 15:31:26 +0800 |
commit | 4655d888677e71962722ad86f255a27386e1e621 (patch) | |
tree | a72629c9b63c2b16ca71fc3b666735cfd14b6bef /camel/camel-index.c | |
parent | 1acd03710d50072259f91bae1a9e2395c6bdfac7 (diff) | |
download | gsoc2013-evolution-4655d888677e71962722ad86f255a27386e1e621.tar.gz gsoc2013-evolution-4655d888677e71962722ad86f255a27386e1e621.tar.zst gsoc2013-evolution-4655d888677e71962722ad86f255a27386e1e621.zip |
Check for LOGIN xxxx as well if debug is on, so we dont print passwords to
2002-05-07 Not Zed <NotZed@Ximian.com>
* camel-remote-store.c (remote_send_string): Check for LOGIN xxxx
as well if debug is on, so we dont print passwords to evolution
logs.
* providers/imap/camel-imap-utils.c (imap_is_atom_char): This was
really broken. 1. isprint() is locale dependent, and 2. it looked
up an 8 bit value in a 7 bit table without truncating it. I've
removed the isprint() stuff and just put it directly into the
special table, which i've expanded to the right size too.
* providers/imap/*: Applied patch from Preston Elder
<prez@magick.tm> to make camel only use literals if it needs to
for simple strings. Changed slightly to use imap_is_atom() and
more consistent formatting.
providers/imap/camel-imap-utils.c (imap_is_atom): Chagned from
imap_needs_quoting().
** Merged in camel-object2 branch. Simpler camelobject
implementation + object args interface.
* camel.c (camel_init): Call camel_object_get_type() to make sure
camel_object_type is initialised.
* camel-object.h (CAMEL_OBJECT_TYPE): Changed to return global
camel_object_type pointer, not call camel_object_get_type.
svn path=/trunk/; revision=16701
Diffstat (limited to 'camel/camel-index.c')
-rw-r--r-- | camel/camel-index.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-index.c b/camel/camel-index.c index cb8ebd120b..eb476b41fc 100644 --- a/camel/camel-index.c +++ b/camel/camel-index.c @@ -46,7 +46,7 @@ struct _CamelIndexPrivate { #define _PRIVATE(o) (((CamelIndex *)(o))->priv) -#define CI_CLASS(o) ((CamelIndexClass *)(((CamelObject *)o)->classfuncs)) +#define CI_CLASS(o) ((CamelIndexClass *)(((CamelObject *)o)->klass)) /* ********************************************************************** */ /* CamelIndex */ @@ -203,7 +203,7 @@ camel_index_names(CamelIndex *idx) static CamelObjectClass *camel_index_name_parent; -#define CIN_CLASS(o) ((CamelIndexNameClass *)(((CamelObject *)o)->classfuncs)) +#define CIN_CLASS(o) ((CamelIndexNameClass *)(((CamelObject *)o)->klass)) static void camel_index_name_class_init(CamelIndexNameClass *klass) @@ -278,7 +278,7 @@ camel_index_name_add_buffer(CamelIndexName *idn, const char *buffer, size_t len) static CamelObjectClass *camel_index_cursor_parent; -#define CIC_CLASS(o) ((CamelIndexCursorClass *)(((CamelObject *)o)->classfuncs)) +#define CIC_CLASS(o) ((CamelIndexCursorClass *)(((CamelObject *)o)->klass)) static void camel_index_cursor_class_init(CamelIndexCursorClass *klass) |