mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
Be consistent across all cases.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user