From 08887eaaf2c6eb5f838c8e383ed7ce689035f449 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 15 Aug 2002 09:37:26 +0000 Subject: [PATCH] changed default stop bits --- ext/dio/dio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1