diff options
author | Joey Smith <joey@php.net> | 2001-07-06 01:21:55 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2001-07-06 01:21:55 +0000 |
commit | 08d1178d6eb5fe49f540bd4e2703dacd4735cc5a (patch) | |
tree | c99ac800519911f229fb0f92bc4f011e17e9e433 /ext/sybase_ct | |
parent | 7b9b542af32b17163ebfd4c76ca2feed1a4fa24b (diff) | |
download | php-git-08d1178d6eb5fe49f540bd4e2703dacd4735cc5a.tar.gz |
Be consistent across all cases.
Diffstat (limited to 'ext/sybase_ct')
-rw-r--r-- | ext/sybase_ct/php_sybase_ct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sybase_ct/php_sybase_ct.c b/ext/sybase_ct/php_sybase_ct.c index d083a24502..f0a01dd932 100644 --- a/ext/sybase_ct/php_sybase_ct.c +++ b/ext/sybase_ct/php_sybase_ct.c @@ -459,9 +459,9 @@ static void php_sybase_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) switch(ZEND_NUM_ARGS()) { case 0: /* defaults */ host=user=passwd=charset=NULL; - hashed_details_length=6+3; + hashed_details_length=6+4; hashed_details = (char *) emalloc(hashed_details_length+1); - strcpy(hashed_details, "sybase___"); + strcpy(hashed_details, "sybase____"); break; case 1: { pval *yyhost; |