aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-06-19 01:55:40 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-06-19 01:55:40 +0800
commit9875794a7150d6ffa13fdd9cddcca0c2edb2666e (patch)
tree3cc8cd7c093c9224b748440566183a1c3c6b22a2
parent50cd0309ad9633081225ae11a66c17e8928384ee (diff)
downloadgsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.tar
gsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.tar.gz
gsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.tar.bz2
gsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.tar.lz
gsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.tar.xz
gsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.tar.zst
gsoc2013-evolution-9875794a7150d6ffa13fdd9cddcca0c2edb2666e.zip
Made static (to match the prototype).
2003-06-13 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-folder.c (pop3_finalize): Made static (to match the prototype). svn path=/trunk/; revision=21468
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/providers/pop3/camel-pop3-folder.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 340ca4fc4c..396697c96a 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-13 Jeffrey Stedfast <fejj@ximian.com>
+
+ * providers/pop3/camel-pop3-folder.c (pop3_finalize): Made static
+ (to match the prototype).
+
2003-06-13 Larry Ewing <lewing@ximian.com>
* camel-folder-thread.c (camel_folder_thread_messages_apply):
diff --git a/camel/providers/pop3/camel-pop3-folder.c b/camel/providers/pop3/camel-pop3-folder.c
index 50584d228e..a0d4ea661f 100644
--- a/camel/providers/pop3/camel-pop3-folder.c
+++ b/camel/providers/pop3/camel-pop3-folder.c
@@ -93,7 +93,7 @@ camel_pop3_folder_get_type (void)
return camel_pop3_folder_type;
}
-void
+static void
pop3_finalize (CamelObject *object)
{
CamelPOP3Folder *pop3_folder = CAMEL_POP3_FOLDER (object);
@@ -218,7 +218,7 @@ cmd_uidl(CamelPOP3Engine *pe, CamelPOP3Stream *stream, void *data)
do {
ret = camel_pop3_stream_line(stream, &line, &len);
- if (ret>=0) {
+ if (ret>=0) {
if (strlen(line) > 1024)
line[1024] = 0;
if (sscanf(line, "%u %s", &id, uid) == 2) {