diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-02-24 02:59:58 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-02-24 02:59:58 +0000 |
commit | 6223b18134a138483c09b1439ace6b8f2b310c7b (patch) | |
tree | 5b99012b79d3b5caddce759daffc3066fe50afc0 /ext/sybase/php_sybase_db.c | |
parent | b415e3da5a3a384e6e645cda25fe564a7590fad8 (diff) | |
download | php-git-6223b18134a138483c09b1439ace6b8f2b310c7b.tar.gz |
Fixed a typo
Diffstat (limited to 'ext/sybase/php_sybase_db.c')
-rw-r--r-- | ext/sybase/php_sybase_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase/php_sybase_db.c b/ext/sybase/php_sybase_db.c index ee997f4fe7..10be6992ab 100644 --- a/ext/sybase/php_sybase_db.c +++ b/ext/sybase/php_sybase_db.c @@ -340,7 +340,7 @@ static void php_sybase_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent) convert_to_string_ex(yyuser); host = Z_STRVAL_PP(yyhost); user = Z_STRVAL_PP(yyuser); - hashed_details_length = sprintf(&hashed_details, 0, "sybase_%s_%s___", Z_STRVAL_PP(yyhost), Z_STRVAL_PP(yyuser)); + hashed_details_length = spprintf(&hashed_details, 0, "sybase_%s_%s___", Z_STRVAL_PP(yyhost), Z_STRVAL_PP(yyuser)); } break; case 3: { |