summaryrefslogtreecommitdiff
path: root/ext/interbase/interbase.c
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2004-06-01 08:38:33 +0000
committerArd Biesheuvel <abies@php.net>2004-06-01 08:38:33 +0000
commitff3a363d7a067ea07f5099f555d321f5f3340ec7 (patch)
treefde3c6fdd039fa29c9fd7bd18af72460592c0d9d /ext/interbase/interbase.c
parent302fd9a77fa2ea5f8f4cd642a2a4b7029fb90bdc (diff)
downloadphp-git-ff3a363d7a067ea07f5099f555d321f5f3340ec7.tar.gz
Use constant IBASE_CREATE instead of just 0
Diffstat (limited to 'ext/interbase/interbase.c')
-rw-r--r--ext/interbase/interbase.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c
index f62ce1e675..03d9c572e6 100644
--- a/ext/interbase/interbase.c
+++ b/ext/interbase/interbase.c
@@ -465,6 +465,7 @@ PHP_MINIT_FUNCTION(ibase)
le_trans = zend_register_list_destructors_ex(_php_ibase_free_trans, NULL, "interbase transaction", module_number);
REGISTER_LONG_CONSTANT("IBASE_DEFAULT", PHP_IBASE_DEFAULT, CONST_PERSISTENT);
+ REGISTER_LONG_CONSTANT("IBASE_CREATE", PHP_IBASE_CREATE, CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("IBASE_TEXT", PHP_IBASE_FETCH_BLOBS, CONST_PERSISTENT); /* deprecated, for BC only */
REGISTER_LONG_CONSTANT("IBASE_FETCH_BLOBS", PHP_IBASE_FETCH_BLOBS, CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("IBASE_FETCH_ARRAYS", PHP_IBASE_FETCH_ARRAYS, CONST_PERSISTENT);