]> code.citadel.org Git - citadel.git/commitdiff
* commands.c: changed sttybbs() to support HP/UX termios VMIN and VTIME
authorMichael Hampton <io_error@uncensored.citadel.org>
Thu, 28 Sep 2000 10:27:38 +0000 (10:27 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Thu, 28 Sep 2000 10:27:38 +0000 (10:27 +0000)
citadel/ChangeLog
citadel/commands.c

index fd4c21f7ae5e0a7aa4a7fe45af9ffe45198e4a6b..54465846c3c2803494b4a5d0249f98959829865a 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 573.4  2000/09/28 10:27:38  error
+ * commands.c: changed sttybbs() to support HP/UX termios VMIN and VTIME
+
  Revision 573.3  2000/09/24 22:01:45  ajc
  * ipc_c_tcp.c: don't hardcode BBSDIR path for unix domain sockets
 
@@ -2063,3 +2066,5 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
+
+
index 3b7372f679499d124b153d3db2d7fb83f3444b3e..e78c688287766aa4e7418ff3926165aea3f0ff46 100644 (file)
@@ -997,6 +997,11 @@ void sttybbs(int cmd)
                live.c_cc[VINTR] = (-1);
                live.c_cc[VQUIT] = (-1);
 
+#ifdef hpux
+               live.c_cc[VMIN] = 0;
+               live.c_cc[VTIME] = 0;
+#endif
+
                /* do we even need this stuff anymore? */
                /* live.c_line=0; */
                live.c_cc[VERASE] = 8;