diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 06:04:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 06:04:21 +0800 |
commit | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch) | |
tree | 2e1e96f33404781354c422a7e9beaf458ebeb655 /plugins/mail-remote/client.c | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip |
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Remove trailing whitespace from source code.
svn path=/trunk/; revision=34537
Diffstat (limited to 'plugins/mail-remote/client.c')
-rw-r--r-- | plugins/mail-remote/client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/mail-remote/client.c b/plugins/mail-remote/client.c index 5740d526c6..2c633c9d1d 100644 --- a/plugins/mail-remote/client.c +++ b/plugins/mail-remote/client.c @@ -219,7 +219,7 @@ add_message(Evolution_Mail_Folder folder, const char *msg) mis.flagMask = CAMEL_MESSAGE_SEEN; mem = (BonoboObject *)evolution_mail_messagestream_new_buffer(msg, strlen(msg)); - + printf("attempt send mail to store\n"); Evolution_Mail_Folder_appendMessage(folder, &mis, bonobo_object_corba_objref(mem), &ev); if (ev._major != CORBA_NO_EXCEPTION) { @@ -260,9 +260,9 @@ static int domain(void *data) Evolution_Mail_Properties *props; #endif Evolution_Mail_Store store = stores->_buffer[i].store; - + printf("store %p '%s' uid '%s'\n", store, stores->_buffer[i].name, stores->_buffer[i].uid); - + #if 0 Evolution_Mail_Store_getProperties(store, &names, &props, &ev); if (ev._major != CORBA_NO_EXCEPTION) { @@ -287,12 +287,12 @@ static int domain(void *data) { char *msg = "To: notzed@novell.com\r\n" "Subject: This is a test from auto-send\r\n" - "\r\n" + "\r\n" "Blah blah, test message!\r\n"; BonoboObject *mem; mem = (BonoboObject *)evolution_mail_messagestream_new_buffer(msg, strlen(msg)); - + printf("attempt send mail to store\n"); Evolution_Mail_Store_sendMessage(store, bonobo_object_corba_objref(mem), &ev); if (ev._major != CORBA_NO_EXCEPTION) @@ -313,7 +313,7 @@ static int domain(void *data) if (!strcmp(folders->_buffer[f].full_name, "Private")) { const char *msg = "To: notzed@novell.com\r\n" "Subject: This is a test append from client\r\n" - "\r\n" + "\r\n" "Blah blah, test appended message!\r\n"; list_folder(folders->_buffer[f].folder); |