public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Cygwin: serial: Fix a copy-paste error in DTR setup
@ 2022-11-29 12:54 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2022-11-29 12:54 UTC (permalink / raw)
  To: cygwin-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=a263fe0b268580273c1adc4b1bad256147990222

commit a263fe0b268580273c1adc4b1bad256147990222
Author: Carlo Bramini <30959007+carlo-bramini@users.noreply.github.com>
Date:   Tue Nov 29 10:02:43 2022 +0100

    Cygwin: serial: Fix a copy-paste error in DTR setup
    
    In commit 2dab880c963ce0204c3513d664f610b587a3e6a6 I did a mistake when
    I copied the new fhandler_serial::switch_modem_lines() from my modified
    3.3.6 branch to the current master and I left a copy paste error. This
    patch fixes that error.
    
    Fixes: 2dab880c963c ("Cygwin: fix TIOCMBIS/TIOCMBIC not working when using usbser.sys")

Diff:
---
 winsup/cygwin/fhandler/serial.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/winsup/cygwin/fhandler/serial.cc b/winsup/cygwin/fhandler/serial.cc
index 58a8df677..e04f8f263 100644
--- a/winsup/cygwin/fhandler/serial.cc
+++ b/winsup/cygwin/fhandler/serial.cc
@@ -411,10 +411,10 @@ fhandler_serial::switch_modem_lines (int set, int clr)
         dcb.fRtsControl = RTS_CONTROL_DISABLE;
 
       if (set & TIOCM_DTR)
-        dcb.fRtsControl = DTR_CONTROL_ENABLE;
+        dcb.fDtrControl = DTR_CONTROL_ENABLE;
       else
       if (clr & TIOCM_DTR)
-        dcb.fRtsControl = DTR_CONTROL_DISABLE;
+        dcb.fDtrControl = DTR_CONTROL_DISABLE;
 
       if (!SetCommState(get_handle(), &dcb))
         {

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-11-29 12:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-29 12:54 [newlib-cygwin] Cygwin: serial: Fix a copy-paste error in DTR setup Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).