diff options
Diffstat (limited to 'netware/mysql_test_run.c')
-rw-r--r-- | netware/mysql_test_run.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/netware/mysql_test_run.c b/netware/mysql_test_run.c index 2b9522ff57d..7ca242178ff 100644 --- a/netware/mysql_test_run.c +++ b/netware/mysql_test_run.c @@ -27,6 +27,7 @@ #include "my_manage.h" #ifdef __NETWARE__ #define strindex(a,b) ((char*)strindex(a,b)) +#define strstr(a,b) ((char*)strstr(a,b)) #endif /****************************************************************************** @@ -943,7 +944,7 @@ void run_test(char *test) // increment total ++total_test; } - else if (err == 2) + else if (err == 62) { // skip rstr = TEST_SKIP; |