summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-03-12 17:18:21 +0000
committerSascha Schumann <sas@php.net>2000-03-12 17:18:21 +0000
commitbb09ee9505023838079d427d47e7d0b0494d1b8c (patch)
tree630e0c0a4cb16196323e88c1f4759cea3cd60574 /ext
parent00c14f7413e7dff82fb187d990d5d19c0ad2a7cf (diff)
downloadphp-git-bb09ee9505023838079d427d47e7d0b0494d1b8c.tar.gz
Use sprintf everywhere and define sprintf to php_sprintf, if sprintf is broken.
Diffstat (limited to 'ext')
-rw-r--r--ext/odbc/php_odbc.c2
-rw-r--r--ext/standard/math.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c
index e9ee39a35e..03e154b7c9 100644
--- a/ext/odbc/php_odbc.c
+++ b/ext/odbc/php_odbc.c
@@ -1725,7 +1725,7 @@ void odbc_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent)
RETURN_FALSE;
}
- hashed_len = php_sprintf(hashed_details, "%s_%s_%s_%s_%d", ODBC_TYPE, db, uid, pwd, cur_opt);
+ hashed_len = sprintf(hashed_details, "%s_%s_%s_%s_%d", ODBC_TYPE, db, uid, pwd, cur_opt);
/* FIXME the idea of checking to see if our connection is already persistent
is good, but it adds a lot of overhead to non-persistent connections. We
diff --git a/ext/standard/math.c b/ext/standard/math.c
index 19b87e733c..b5ecf38fd9 100644
--- a/ext/standard/math.c
+++ b/ext/standard/math.c
@@ -613,7 +613,7 @@ char *_php_math_number_format(double d,int dec,char dec_point,char thousand_sep)
dec = MAX(0,dec);
tmpbuf = (char *) emalloc(32+dec);
- tmplen=php_sprintf(tmpbuf,"%.*f",dec,d);
+ tmplen=sprintf(tmpbuf,"%.*f",dec,d);
if (!isdigit((int)tmpbuf[0])) {
return tmpbuf;