summaryrefslogtreecommitdiff
path: root/ext/mysqli
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-08-31 10:52:23 +0000
committerMarcus Boerger <helly@php.net>2003-08-31 10:52:23 +0000
commitd15ad4609d82d8b3e8c2450f092e608d5bda9361 (patch)
tree08e59fa0e1a105cc7b6764475e8e2208ae56769c /ext/mysqli
parentade319ac54f08382963bf938e956b3b22ec185ea (diff)
downloadphp-git-d15ad4609d82d8b3e8c2450f092e608d5bda9361.tar.gz
Revisited: Replace the non portable code by spprintf
Diffstat (limited to 'ext/mysqli')
-rw-r--r--ext/mysqli/mysqli_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c
index 94a16f20dc..4227fe1001 100644
--- a/ext/mysqli/mysqli_api.c
+++ b/ext/mysqli/mysqli_api.c
@@ -1691,7 +1691,7 @@ PHP_FUNCTION(mysqli_stmt_data_seek)
MYSQLI_FETCH_RESOURCE(stmt, STMT *, prstmt, PR_STMT *, &mysql_stmt, "mysqli_stmt");
- mysql_stmt_data_seek(stmt->stmt, offset);
+// mysql_stmt_data_seek(stmt->stmt, offset);
return;
}
/* }}} */
@@ -1711,7 +1711,7 @@ PHP_FUNCTION(mysqli_stmt_num_rows)
MYSQLI_FETCH_RESOURCE(stmt, STMT *, prstmt, PR_STMT *, &mysql_stmt, "mysqli_stmt");
- rc = mysql_stmt_num_rows(stmt->stmt);
+// rc = mysql_stmt_num_rows(stmt->stmt);
MYSQLI_RETURN_LONG_LONG(rc)
}
/* }}} */