* do typedef the visit struct, remove all those 'struct' statements from all over...
[citadel.git] / citadel / modules / pop3 / serv_pop3.c
index 2c1402dbde6ff72cbc1aca20fdbbb4448204570b..50c2749016b7c28af44e7a9bfbff82f72a2cb07a 100644 (file)
@@ -185,7 +185,7 @@ void pop3_add_message(long msgnum, void *userdata) {
  * of messages in the inbox, or -1 for error)
  */
 int pop3_grab_mailbox(void) {
-        struct visit vbuf;
+        visit vbuf;
        int i;
 
        if (CtdlGetRoom(&CC->room, MAILROOM) != 0) return(-1);
@@ -472,7 +472,7 @@ void pop3_dele(char *argbuf) {
  */
 void pop3_update(void) {
        int i;
-        struct visit vbuf;
+        visit vbuf;
 
        long *deletemsgs = NULL;
        int num_deletemsgs = 0;