diff options
Diffstat (limited to 'src/3rdparty/sqlite/shell.c')
-rw-r--r-- | src/3rdparty/sqlite/shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/sqlite/shell.c b/src/3rdparty/sqlite/shell.c index 9348c3308..58771aa78 100644 --- a/src/3rdparty/sqlite/shell.c +++ b/src/3rdparty/sqlite/shell.c @@ -488,7 +488,7 @@ static char zHelp[] = ".output FILENAME Send output to FILENAME\n" ".output stdout Send output to the screen\n" ".prompt MAIN CONTINUE Replace the standard prompts\n" - ".tquit Exit this program\n" + ".quit Exit this program\n" ".read FILENAME Execute SQL in FILENAME\n" #ifdef SQLITE_HAS_CODEC ".rekey OLD NEW NEW Change the encryption key\n" @@ -770,7 +770,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){ } }else - if( c=='q' && strncmp(azArg[0], "tquit", n)==0 ){ + if( c=='q' && strncmp(azArg[0], "quit", n)==0 ){ rc = 1; }else |