Fix IS_UNSET -> IS_NULL rename.

This commit is contained in:
Andrei Zmievski 2000-01-04 14:41:56 +00:00
parent 44e9e95933
commit 16a35c234e
2 changed files with 3 additions and 3 deletions

View file

@ -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;
}
}
/* }}} */