Update of /cvsroot/mahogany/M/src/modules/viewflt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5264/src/modules/viewflt

Modified Files:
        QuoteURL.cpp 
Log Message:
fixed off by 1 error in testing for wrapped quoted lines

Index: QuoteURL.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/viewflt/QuoteURL.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -b -u -2 -r1.16 -r1.17
--- QuoteURL.cpp        29 Jul 2004 10:15:44 -0000      1.16
+++ QuoteURL.cpp        2 Aug 2004 09:53:16 -0000       1.17
@@ -325,5 +325,5 @@
          if ( !nextnext ||
                (!IsBlankLine(nextnext + 1) &&
-                strncmp(string, nextnext + 1, next - nextStart + 1) != 0) )
+                strncmp(string, nextnext + 1, next - nextStart) != 0) )
          {
             // the line after next doesn't start with the same prefix as



-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to