diff options
author | jplyon <jplyon@noemail.net> | 2003-06-12 08:59:00 +0000 |
---|---|---|
committer | jplyon <jplyon@noemail.net> | 2003-06-12 08:59:00 +0000 |
commit | 892f671cf3689cd0ac250be6e2f76a6bb7f1d370 (patch) | |
tree | 01df29484fe10f8087d43c588a1f72f38e068851 /src | |
parent | 2e0d738b60abba741c1eb20a6cad011a7f4a66f6 (diff) | |
download | sqlite-892f671cf3689cd0ac250be6e2f76a6bb7f1d370.tar.gz sqlite-892f671cf3689cd0ac250be6e2f76a6bb7f1d370.zip |
Added missing error string to sqlite_error_string(). (CVS 1018)
FossilOrigin-Name: 3afb7b3586be81202c76692afea9d2b7a63b4b93
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index c14860a48..70d55f2e5 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.134 2003/06/04 15:48:33 drh Exp $ +** $Id: main.c,v 1.135 2003/06/12 08:59:01 jplyon Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -745,6 +745,7 @@ const char *sqlite_error_string(int rc){ case SQLITE_MISUSE: z = "library routine called out of sequence";break; case SQLITE_NOLFS: z = "kernel lacks large file support"; break; case SQLITE_AUTH: z = "authorization denied"; break; + case SQLITE_FORMAT: z = "auxiliary database format error"; break; default: z = "unknown error"; break; } return z; |