sniper Mon Dec 1 11:41:02 2003 EDT
Modified files: (Branch: PHP_4_3)
/php-src/ext/dio dio.c
Log:
MFH: ws fixes
Index: php-src/ext/dio/dio.c
diff -u php-src/ext/dio/dio.c:1.21.2.5 php-src/ext/dio/dio.c:1.21.2.6
--- php-src/ext/dio/dio.c:1.21.2.5 Mon Dec 1 11:38:23 2003
+++ php-src/ext/dio/dio.c Mon Dec 1 11:40:59 2003
@@ -52,7 +52,7 @@
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 @@
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 @@
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 @@
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;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php