1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Change the error message returned when localtime_r() fails to "local time unavailable".

FossilOrigin-Name: 0e82175fd86f0ca5da90676aaee3118a70264d85
This commit is contained in:
dan
2011-06-21 13:46:11 +00:00
parent 30ce189dc9
commit 7c8b355e65
4 changed files with 15 additions and 19 deletions

View File

@@ -483,7 +483,7 @@ static sqlite3_int64 localtimeOffset(
{
struct tm sLocal;
if( 0==osLocaltime_r(&t, &sLocal) ){
sqlite3_result_error(pCtx, "error in localtime_r()", -1);
sqlite3_result_error(pCtx, "local time unavailable", -1);
*pRc = SQLITE_ERROR;
return 0;
}
@@ -498,7 +498,7 @@ static sqlite3_int64 localtimeOffset(
{
struct tm sLocal;
if( 0!=osLocaltime_s(&sLocal, &t) ){
sqlite3_result_error(pCtx, "error in localtime_s()", -1);
sqlite3_result_error(pCtx, "local time unavailable", -1);
*pRc = SQLITE_ERROR;
return 0;
}
@@ -524,7 +524,7 @@ static sqlite3_int64 localtimeOffset(
}
sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
if( !pTm ){
sqlite3_result_error(pCtx, "error in localtime()", -1);
sqlite3_result_error(pCtx, "local time unavailable", -1);
*pRc = SQLITE_ERROR;
return 0;
}