ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/modules/smtp smtp.c,1.4,1.5


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/smtp smtp.c,1.4,1.5
Date: Thu, 30 Jan 2003 03:40:50 -0500

Update of /cvsroot/ayttm/ayttm/modules/smtp
In directory subversions:/tmp/cvs-serv5353

Modified Files:
        smtp.c 
Log Message:
fix for setting subject correctly

Index: smtp.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/smtp/smtp.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- smtp.c      30 Jan 2003 08:23:19 -0000      1.4
+++ smtp.c      30 Jan 2003 08:40:45 -0000      1.5
@@ -610,7 +610,7 @@
                int n, len = strlen(d->msg);
                for(n=1; d->msg[len-n] == '\r' || d->msg[len-n] == '\n'; n++)
                        d->msg[len-n] = '\0';
-               if(!strncasecmp(d->msg, "Subject:", strlen("Subject:")))
+               if(strncasecmp(d->msg, "Subject:", strlen("Subject:")))
                        smtp_tcp_writeline("", fd);
                smtp_tcp_writeline(d->msg, fd);
                strcpy(buff, ".");





reply via email to

[Prev in Thread] Current Thread [Next in Thread]