Update of /cvsroot/simplemail/simplemail
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5221
Modified Files:
imap.c
Log Message:
Declare variables at the top of the function header.
Index: imap.c
===================================================================
RCS file: /cvsroot/simplemail/simplemail/imap.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- imap.c 24 Dec 2013 09:34:20 -0000 1.91
+++ imap.c 24 Dec 2013 10:34:00 -0000 1.92
@@ -577,10 +577,10 @@
int num_of_remote_mails = 0;
int success = 0;
struct remote_mail *remote_mail_array = NULL;
+ struct remote_mailbox *rm;
SM_ENTER;
- struct remote_mailbox *rm;
if (!(rm = imap_select_mailbox(conn,path,writemode)))
{
SM_RETURN(NULL,"%p");
|