[Libpst-commits] r55 - trunk

Joseph Nahmias jello at alioth.debian.org
Thu Dec 7 06:45:39 CET 2006


Author: jello
Date: 2006-12-07 06:45:39 +0100 (Thu, 07 Dec 2006)
New Revision: 55

Modified:
   trunk/readpst.c
Log:
rfc2426_escape(): fix handling of '\r'

Modified: trunk/readpst.c
===================================================================
--- trunk/readpst.c	2006-12-07 05:42:27 UTC (rev 54)
+++ trunk/readpst.c	2006-12-07 05:45:39 UTC (rev 55)
@@ -1432,6 +1432,7 @@
 	      *b++ = '\\', *b = 'n';
 	      break;
       case '\r': // skip carriage returns
+        --b;
 	      break;
       default:
 	      *b = *a;




More information about the Libpst-commits mailing list