From 7f04720b1efe9baea8770813e85cb17cd600d077 Mon Sep 17 00:00:00 2001 From: bertrand Date: Wed, 16 Feb 2000 18:04:40 +0000 Subject: don't seek the begining of the substream. (_eos): fix eos condition 2000-02-16 bertrand * camel/camel-seekable-substream.c (_set_bounds): don't seek the begining of the substream. (_eos): fix eos condition testing. (_finalize): unref parent stream (_init_with_seekable_stream_and_bounds): ref parent stream * camel/gstring-util.c (g_string_equal_for_hash): (g_string_equal_for_glist): return type is int. * camel/camel.h: * camel/camel.c (camel_init): use (void) instead of (). A lot of other small changes to make the set_input_stream scheme work. It actually works. svn path=/trunk/; revision=1798 --- camel/gstring-util.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'camel/gstring-util.c') diff --git a/camel/gstring-util.c b/camel/gstring-util.c index 9794696c95..eb89c2aa28 100644 --- a/camel/gstring-util.c +++ b/camel/gstring-util.c @@ -210,11 +210,13 @@ g_string_append_g_string(GString *dest_string, GString *other_string) * * Return value: **/ +gint g_string_equal_for_hash (gconstpointer v, gconstpointer v2) { return strcmp ( ((const GString*)v)->str, ((const GString*)v2)->str) == 0; } +gint g_string_equal_for_glist (gconstpointer v, gconstpointer v2) { return !strcmp ( ((const GString*)v)->str, ((const GString*)v2)->str) == 0; -- cgit