diff options
author | Nikos Mavroyanopoulos <nmav@php.net> | 2000-10-20 21:01:31 +0000 |
---|---|---|
committer | Nikos Mavroyanopoulos <nmav@php.net> | 2000-10-20 21:01:31 +0000 |
commit | ebaf484830ab5c7a0e14a9b43a174916330cd031 (patch) | |
tree | 5feecaea87ca3775f278811c92f6baa46275beb5 /ext | |
parent | 4682a3fe95a25ca1ba4164df5888237100ff9f08 (diff) | |
download | php-git-ebaf484830ab5c7a0e14a9b43a174916330cd031.tar.gz |
updated for the new sqlcli
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ovrimos/ovrimos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ovrimos/ovrimos.c b/ext/ovrimos/ovrimos.c index c372b70d05..c1788977b8 100644 --- a/ext/ovrimos/ovrimos.c +++ b/ext/ovrimos/ovrimos.c @@ -36,7 +36,7 @@ PHP_FUNCTION(ovrimos_connect) { convert_to_string(arg3); convert_to_string(arg4); if(!sqlConnect(arg1->value.str.val,arg2->value.str.val,arg3->value.str.val, - arg4->value.str.val,&conn)) { + arg4->value.str.val,&conn, 0)) { RETURN_LONG(0); } RETURN_LONG((int)conn+1); |