summaryrefslogtreecommitdiff
path: root/ext/mysql/php_mysql.c
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-01-04 14:41:56 +0000
committerAndrei Zmievski <andrei@php.net>2000-01-04 14:41:56 +0000
commit16a35c234e1e4fe34df3361336a98d75c9f23cb8 (patch)
tree232d015f90566d67f86d2d59102dbb31e7fce275 /ext/mysql/php_mysql.c
parent44e9e9593370081898f6efbd8321ee876d1fc0ab (diff)
downloadphp-git-16a35c234e1e4fe34df3361336a98d75c9f23cb8.tar.gz
Fix IS_UNSET -> IS_NULL rename.
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r--ext/mysql/php_mysql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c
index 916e7898f2..c15f0f392a 100644
--- a/ext/mysql/php_mysql.c
+++ b/ext/mysql/php_mysql.c
@@ -1257,7 +1257,7 @@ PHP_FUNCTION(mysql_result)
return_value->value.str.val = (char *) safe_estrndup(sql_row[field_offset],return_value->value.str.len);
}
} else {
- return_value->type = IS_UNSET;
+ return_value->type = IS_NULL;
}
}
/* }}} */