~groldster/ubuntu/maverick/nginx/merge-from-sid-0.7.67-2

« back to all changes in this revision

Viewing changes to auto/lib/pcre/patch.pcre.c

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-05-31 18:38:56 UTC
  • mfrom: (1.1.11 upstream) (4.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090531183856-lkdgdzr9m731fz92
Tags: 0.7.59-1
* New upstream release, first in Debian for the 0.7 branch. Among other
  issues, it also fixes the problem with wildcard dns names used with SSL.
  (Closes: #515904)
* debian/watch: updated.
* debian/postinst: fixed a bashism. (Closes: #507913)
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
* debian/NEWS.Debian: documented the issues with
  server_names_hash_bucket_size. (Closes: #524785)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--- pcre.c      Thu Aug 21 14:43:07 2003
2
 
+++ pcre.c      Tue Mar 22 12:56:59 2005
3
 
@@ -246,8 +246,8 @@
4
 
 extern "C" void  (*pcre_free)(void *) = free;
5
 
 extern "C" int   (*pcre_callout)(pcre_callout_block *) = NULL;
6
 
 #else
7
 
-void *(*pcre_malloc)(size_t) = malloc;
8
 
-void  (*pcre_free)(void *) = free;
9
 
+void *(__cdecl *pcre_malloc)(size_t) = malloc;
10
 
+void  (__cdecl *pcre_free)(void *) = free;
11
 
 int   (*pcre_callout)(pcre_callout_block *) = NULL;
12
 
 #endif
13
 
 #endif