]> git.pld-linux.org Git - packages/courier.git/commitdiff
- included in 0.52.0
authorSÅ‚awomir Paszkiewicz <paszczus@pld-linux.org>
Sat, 17 Sep 2005 16:54:28 +0000 (16:54 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    courier-webmail-sec_fix.patch -> 1.2

courier-webmail-sec_fix.patch [deleted file]

diff --git a/courier-webmail-sec_fix.patch b/courier-webmail-sec_fix.patch
deleted file mode 100644 (file)
index efdf380..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-diff -Nur old/webmail/html.c new/webmail/html.c
---- old/webmail/html.c 2003-10-06 00:16:13.000000000 +0000
-+++ new/webmail/html.c 2005-08-31 21:32:48.117085448 +0000
-@@ -187,9 +187,16 @@
-                                       if (tai)        ++tai->tagvaluelen;
-                               }
-                               if (*p) p++;
-+                              else
-+                              {
-+                                      memset(tagbuf, ' ', strlen(tagbuf));
-+                              }
-                       }
-                       else
-                       {
-+                              if (c == 0)
-+                                      memset(tagbuf, ' ', strlen(tagbuf));
-+
-                               if (tai)
-                               {
-                                       tai->tagvalue=p;
-@@ -222,6 +229,31 @@
-       while ((p=strchr(tagbuf, '<')) != NULL)
-               *p=' ';
-+      for (p=tagbuf; *p; p++)
-+      {
-+              char *q;
-+
-+              if (*p != '&')
-+                      continue;
-+
-+              q=p;
-+
-+              ++p;
-+
-+              while (*p)
-+              {
-+                      if (strchr("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", *p) == NULL)
-+                              break;
-+                      ++p;
-+              }
-+
-+              if (*p != ';')
-+              {
-+                      *q=0;
-+              }
-+              --p;
-+      }
-+
-         tagattrlen=parseattr(0);
-         if ( tagattrlen > tagattrsize)
-         {
This page took 0.10058 seconds and 4 git commands to generate.