diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-10 10:34:34 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-10 10:34:34 +0000 |
commit | 24b03fd055b993519961b0cffb2a79a4942fb3c7 (patch) | |
tree | fe97fcea70b1e6a6a20262ea6c2e6b96a0df063c /src/auth.c | |
parent | 90e4d95d14d5fa11d4cd535be2ae0d8ee0365044 (diff) | |
download | sqlite-24b03fd055b993519961b0cffb2a79a4942fb3c7.tar.gz sqlite-24b03fd055b993519961b0cffb2a79a4942fb3c7.zip |
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1337)
FossilOrigin-Name: ba2ba24263a9e4d1b65b441295504a5da6380f33
Diffstat (limited to 'src/auth.c')
-rw-r--r-- | src/auth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/auth.c b/src/auth.c index c3546aed6..6984a1d5e 100644 --- a/src/auth.c +++ b/src/auth.c @@ -9,12 +9,12 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** This file contains code used to implement the sqlite_set_authorizer() +** This file contains code used to implement the sqlite3_set_authorizer() ** API. This facility is an optional feature of the library. Embedded ** systems that do not need this facility may omit it by recompiling ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 ** -** $Id: auth.c,v 1.13 2004/05/08 08:23:21 danielk1977 Exp $ +** $Id: auth.c,v 1.14 2004/05/10 10:34:34 danielk1977 Exp $ */ #include "sqliteInt.h" @@ -62,7 +62,7 @@ ** the table and the column that are being accessed. The auth function ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY -** means that the SQL statement will never-run - the sqlite_exec() call +** means that the SQL statement will never-run - the sqlite3_exec() call ** will return with an error. SQLITE_IGNORE means that the SQL statement ** should run but attempts to read the specified column will return NULL ** and attempts to write the column will be ignored. @@ -70,7 +70,7 @@ ** Setting the auth function to NULL disables this hook. The default ** setting of the auth function is NULL. */ -int sqlite_set_authorizer( +int sqlite3_set_authorizer( sqlite *db, int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), void *pArg |