aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-07-25 18:10:35 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-07-25 18:10:35 +0800
commitf4b8c08e313e3df5f4fab9ff42272f111137aa9e (patch)
tree68878af87646ba6a99cd71c6206e80c63802304f /e-util
parent00a8f5e2ec693222e02e96c700c235a81eeb4ce5 (diff)
downloadgsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.tar
gsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.tar.gz
gsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.tar.bz2
gsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.tar.lz
gsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.tar.xz
gsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.tar.zst
gsoc2013-evolution-f4b8c08e313e3df5f4fab9ff42272f111137aa9e.zip
Return the actual count, rather than always 0!
2002-07-25 Not Zed <NotZed@Ximian.com> * e-msgport.c (e_dlist_length): Return the actual count, rather than always 0! svn path=/trunk/; revision=17587
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-msgport.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 2adf6d433b..a26cd8ea10 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-25 Not Zed <NotZed@Ximian.com>
+
+ * e-msgport.c (e_dlist_length): Return the actual count, rather
+ than always 0!
+
2002-07-03 Peter Williams <peterw@ximian.com>
* Makefile.am: Install libeutil, libeconduit, and libedb3util and
diff --git a/e-util/e-msgport.c b/e-util/e-msgport.c
index 6fc83588c6..28c0e5cca9 100644
--- a/e-util/e-msgport.c
+++ b/e-util/e-msgport.c
@@ -93,7 +93,7 @@ int e_dlist_length(EDList *l)
nn = n->next;
}
- return 0;
+ return count;
}
struct _EMsgPort {