Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.

This commit is contained in:
Gerhard Häring 2008-09-12 18:58:57 +00:00
parent ef2276b60d
commit 6e1afcf988
9 changed files with 31 additions and 28 deletions

View file

@ -24,7 +24,7 @@
#include "module.h"
#include "connection.h"
int _sqlite_step_with_busyhandler(sqlite3_stmt* statement, pysqlite_Connection* connection)
int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection)
{
int rc;