1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Fix a typo in the OMIT_AUTORIZATION in expr.c. (CVS 3518)

FossilOrigin-Name: 3dea7fbefdadb269e58ae76bb9a7281c96d8b15b
This commit is contained in:
drh
2006-11-23 11:59:13 +00:00
parent 600123299e
commit 2fca7fef28
3 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id: expr.c,v 1.268 2006/08/24 15:18:25 drh Exp $
** $Id: expr.c,v 1.269 2006/11/23 11:59:13 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1180,7 +1180,7 @@ static int nameResolverStep(void *pArg, Expr *pExpr){
}else{
is_agg = pDef->xFunc==0;
}
#ifndef SQLITE_OMIT_AUTHORIZER
#ifndef SQLITE_OMIT_AUTHORIZATION
if( pDef ){
auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0, pDef->zName, 0);
if( auth!=SQLITE_OK ){