aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/packet.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ncpd/packet.cc')
-rw-r--r--ncpd/packet.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/ncpd/packet.cc b/ncpd/packet.cc
index afd82fb..57b83c7 100644
--- a/ncpd/packet.cc
+++ b/ncpd/packet.cc
@@ -500,11 +500,8 @@ linkFailed()
}
serialStatus = arg;
}
- if (((arg & TIOCM_CTS) == 0)
-#ifndef sun
- || ((arg & TIOCM_DSR) == 0)
-#endif
- ) {
+ // TODO: Check for a solution on Solaris.
+ if ((arg & TIOCM_DSR) == 0) {
failed = true;
}
if ((verbose & PKT_DEBUG_LOG) && lastFatal)