summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Knowles <alan_k@php.net>2002-08-15 09:37:26 +0000
committerAlan Knowles <alan_k@php.net>2002-08-15 09:37:26 +0000
commit08887eaaf2c6eb5f838c8e383ed7ce689035f449 (patch)
tree0a8cfc5cb6266d77259fb99007545c4d745eeba8
parent0dc8cdd4c724f23fa1e8d8fb9c3fadd89a064735 (diff)
downloadphp-git-08887eaaf2c6eb5f838c8e383ed7ce689035f449.tar.gz
changed default stop bits
-rw-r--r--ext/dio/dio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dio/dio.c b/ext/dio/dio.c
index bf6acc4fcc..79fc747b6a 100644
--- a/ext/dio/dio.c
+++ b/ext/dio/dio.c
@@ -456,7 +456,7 @@ PHP_FUNCTION(dio_tcsetattr)
}
if (zend_hash_find(fh, "stop", sizeof("stop"), (void **) &element) == FAILURE) {
- Stop_Bits = 8;
+ Stop_Bits = 0;
}
else {
Stop_Bits = Z_LVAL_PP(element);