/[smecontribs]/rpms/MySQL-python/contribs8/format-mismatch.patch
ViewVC logotype

Annotation of /rpms/MySQL-python/contribs8/format-mismatch.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Wed Feb 24 21:27:43 2010 UTC (14 years, 2 months ago) by slords
Branch: MAIN
CVS Tags: MySQL-python-1_2_3-0_4_c1_el5_sme, HEAD
Initial import

1 slords 1.1 Fix for bug #538234
2    
3    
4     diff -Naur MySQL-python-1.2.3c1.orig/_mysql.c MySQL-python-1.2.3c1/_mysql.c
5     --- MySQL-python-1.2.3c1.orig/_mysql.c 2009-03-30 18:59:28.000000000 -0400
6     +++ MySQL-python-1.2.3c1/_mysql.c 2009-11-23 12:58:41.000000000 -0500
7     @@ -1714,7 +1714,7 @@
8     {
9     unsigned long pid;
10     int r;
11     - if (!PyArg_ParseTuple(args, "i:kill", &pid)) return NULL;
12     + if (!PyArg_ParseTuple(args, "l:kill", &pid)) return NULL;
13     check_connection(self);
14     Py_BEGIN_ALLOW_THREADS
15     r = mysql_kill(&(self->connection), pid);

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed