diff options
Diffstat (limited to 'src/test_server.c')
-rw-r--r-- | src/test_server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_server.c b/src/test_server.c index cc313a966..6862d7c64 100644 --- a/src/test_server.c +++ b/src/test_server.c @@ -10,7 +10,7 @@ ** ****************************************************************************** ** -** $Id: test_server.c,v 1.7 2008/05/16 04:51:55 danielk1977 Exp $ +** $Id: test_server.c,v 1.8 2008/06/26 10:41:19 danielk1977 Exp $ ** ** This file contains demonstration code. Nothing in this file gets compiled ** or linked into the SQLite library unless you use a non-standard option: @@ -208,7 +208,7 @@ ** and only if the SQLITE_SERVER macro is defined. */ #if defined(SQLITE_SERVER) && !defined(SQLITE_OMIT_SHARED_CACHE) -#if defined(OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE +#if defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE /* ** We require only pthreads and the public interface of SQLite. @@ -489,5 +489,5 @@ void sqlite3_server_stop(void){ pthread_mutex_unlock(&g.serverMutex); } -#endif /* defined(OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE */ +#endif /* defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE */ #endif /* defined(SQLITE_SERVER) */ |