diff options
author | drh <drh@noemail.net> | 2006-11-23 11:59:13 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-11-23 11:59:13 +0000 |
commit | 2fca7fef284df9c56d3858b5c571acbf58917327 (patch) | |
tree | 09975fdebdc9108afb6c911c1ab0166bbf6b443f /src/expr.c | |
parent | 600123299e39d2a52c93322ef65ca97b23f114f2 (diff) | |
download | sqlite-2fca7fef284df9c56d3858b5c571acbf58917327.tar.gz sqlite-2fca7fef284df9c56d3858b5c571acbf58917327.zip |
Fix a typo in the OMIT_AUTORIZATION in expr.c. (CVS 3518)
FossilOrigin-Name: 3dea7fbefdadb269e58ae76bb9a7281c96d8b15b
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index 54b6488e4..2ea27f5b8 100644 --- a/src/expr.c +++ b/src/expr.c @@ -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 ){ |