]> code.citadel.org Git - citadel.git/blobdiff - citadel/modules/smtp/smtp_util.c
Removed the register/callback stuff from serv_smtp.c , it added more complexity than...
[citadel.git] / citadel / modules / smtp / smtp_util.c
index 14c4e02b7fe10a5e47c99b01605a6ea8f1df22bc..440084454d9e779ba947b3883bfadfb19e354be0 100644 (file)
@@ -52,7 +52,7 @@
 
 const char *smtp_get_Recipients(void)
 {
-       citsmtp *sSMTP = SMTP;
+       struct citsmtp *sSMTP = SMTP;
 
        if (sSMTP == NULL)
                return NULL;
@@ -84,7 +84,7 @@ void smtp_do_bounce(const char *instr, int is_final)
        int num_bounces = 0;
        int bounce_this = 0;
        struct CtdlMessage *bmsg = NULL;
-       recptypes *valid;
+       struct recptypes *valid;
        int successful_bounce = 0;
        static int seq = 0;
        StrBuf *BounceMB;