]> granicus.if.org Git - php/commitdiff
MFH: ws fixes
authorfoobar <sniper@php.net>
Mon, 1 Dec 2003 16:40:59 +0000 (16:40 +0000)
committerfoobar <sniper@php.net>
Mon, 1 Dec 2003 16:40:59 +0000 (16:40 +0000)
ext/dio/dio.c

index bd573a53cfb80ae88d41c74429151a9c194d3813..83575cc2a481150cb058fde92998be9c1ff02620 100644 (file)
@@ -52,7 +52,7 @@ function_entry dio_functions[] = {
        PHP_FE(dio_read,      NULL)
        PHP_FE(dio_write,     NULL)
        PHP_FE(dio_close,     NULL)
-        PHP_FE(dio_tcsetattr,     NULL)
+       PHP_FE(dio_tcsetattr,     NULL)
        {NULL, NULL, NULL}
 };
 
@@ -435,13 +435,13 @@ PHP_FUNCTION(dio_tcsetattr)
        long BAUD,DATABITS,STOPBITS,PARITYON,PARITY;
        HashTable      *fh;
        zval          **element;
-        
+
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rz", &r_fd, &arg) == FAILURE) {
                return;
        }
        ZEND_FETCH_RESOURCE(f, php_fd_t *, &r_fd, -1, le_fd_name, le_fd);
 
+
        if (Z_TYPE_P(arg) != IS_ARRAY) {
                zend_error(E_WARNING,"tcsetattr, third argument should be an associative array");
                return;
@@ -473,8 +473,8 @@ PHP_FUNCTION(dio_tcsetattr)
                Parity = Z_LVAL_PP(element);
        } 
 
-    /* assign to correct values... */
-    switch (Baud_Rate)  {
+       /* assign to correct values... */
+       switch (Baud_Rate)  {
                case 38400:            
                        BAUD = B38400;
                        break;
@@ -570,7 +570,7 @@ PHP_FUNCTION(dio_tcsetattr)
                        zend_error(E_WARNING, "invalid parity %d", Parity);
                        RETURN_FALSE;
        }   
-        
+
        newtio.c_cflag = BAUD | CRTSCTS | DATABITS | STOPBITS | PARITYON | PARITY | CLOCAL | CREAD;
        newtio.c_iflag = IGNPAR;
        newtio.c_oflag = 0;