1
0
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:
Joey Smith
2001-07-06 01:21:55 +00:00
parent 7b9b542af3
commit 08d1178d6e
+2 -2
View File
@@ -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;